Properly escape command line arguments

Closes gh-3841
This commit is contained in:
Stephane Nicoll 2015-10-07 10:58:07 +02:00
parent a314982d29
commit 4ccbca259b
1 changed files with 1 additions and 1 deletions

View File

@ -92,4 +92,4 @@ if $cygwin; then
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
fi
"${JAVA_HOME}/bin/java" ${JAVA_OPTS} -cp "$CLASSPATH" org.springframework.boot.loader.JarLauncher $*
"${JAVA_HOME}/bin/java" ${JAVA_OPTS} -cp "$CLASSPATH" org.springframework.boot.loader.JarLauncher "$@"