From 1df1deea0ecb7848238af169364c13f4317bef47 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 6 Feb 2020 14:22:23 +0100 Subject: [PATCH] Continued: - double-quotes are required for Windows paths like "c:/Program Files/" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- build-dist-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-dist-all.sh b/build-dist-all.sh index 5c2da77..57775ca 100755 --- a/build-dist-all.sh +++ b/build-dist-all.sh @@ -34,7 +34,7 @@ for project in ${LIST}; do fi # Build JAR - ${ANT_BIN} jar + "${ANT_BIN}" jar # Save status STATUS="$?" @@ -43,7 +43,7 @@ for project in ${LIST}; do if [ "${STATUS}" != "0" ] then # This has failed, so try "dist" - ${ANT_BIN} dist + "${ANT_BIN}" dist STATUS="$?" # Still failing? Oh, to bad -- 2.30.2