From fd91c7f6d4491f16ad0790efe56ec534d1882833 Mon Sep 17 00:00:00 2001 From: Stuart Owen Date: Wed, 26 Aug 2020 11:47:37 +0100 Subject: [PATCH] fix to run script from path with spaces in the name --- etc/rightfield.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rightfield.sh b/etc/rightfield.sh index 1fe94d5..b11d3e9 100755 --- a/etc/rightfield.sh +++ b/etc/rightfield.sh @@ -9,4 +9,4 @@ if test -x "$JAVA_HOME/bin/java"; then javabin="$JAVA_HOME/bin/java" fi -exec $javabin -Xmx1000M -jar $dir/rightfield-bin.jar $@ +exec $javabin -Xmx1000M -jar "$dir/rightfield-bin.jar" $@