From 291992054c6077e8343c1e2beb76d359de38aaa1 Mon Sep 17 00:00:00 2001 From: David Lecompte <3gpp@metani.eu> Date: Wed, 3 Jun 2026 14:50:31 +0200 Subject: [PATCH 1/1] Correct bug in docx2asn.h --- bin/docx2asn.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/docx2asn.sh b/bin/docx2asn.sh index 832f134..f29e8c9 100755 --- a/bin/docx2asn.sh +++ b/bin/docx2asn.sh @@ -11,12 +11,12 @@ if [[ ! -w . ]] ; then exit 1 fi -echo "platform est $platform" +platform=$(uname -a) case $platform in Linux) libreoffice="libreoffice" ;; CYGWIN*) libreoffice="soffice" ;; - *) print "Unkown platform $platform" + *) echo "Unkown platform $platform" exit 1;; esac -- 2.47.3