Skip to content

Commit

Permalink
Fix quoting of shell script arguments
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Davis <[email protected]>
  • Loading branch information
dr-jts committed Jul 9, 2020
1 parent 037be73 commit 0df5ae5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/jtsop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ fi
#---------------------------#
# run the program #
#---------------------------#
java -cp ${JTS_LIB_DIR}/JTSTestBuilder.jar org.locationtech.jtstest.cmd.JTSOpCmd $@
java -cp ${JTS_LIB_DIR}/JTSTestBuilder.jar org.locationtech.jtstest.cmd.JTSOpCmd "$@"
2 changes: 1 addition & 1 deletion bin/testbuilder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ fi
#---------------------------#
# run the program #
#---------------------------#
java -jar ${JAVA_OPTS} ${JAVA_LOOKANDFEEL} -jar ${JTS_LIB_DIR}/JTSTestBuilder.jar ${APP_OPTS}
java -jar ${JAVA_OPTS} ${JAVA_LOOKANDFEEL} -jar ${JTS_LIB_DIR}/JTSTestBuilder.jar ${APP_OPTS} "$@"
2 changes: 1 addition & 1 deletion bin/testrunner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ fi
#---------------------------#
# run the program #
#---------------------------#
java -jar ${JTS_LIB_DIR}/JTSTestRunner.jar $@
java -jar ${JTS_LIB_DIR}/JTSTestRunner.jar "$@"

0 comments on commit 0df5ae5

Please sign in to comment.