We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here in the Windows script, %JAVACMD% is unquoted:
%JAVACMD% %JAVA_OPTS% -classpath %CLASSPATH% -Dapp.name="skipper" -Dapp.repo="%REPO%" -Dapp.home="%BASEDIR%" -Dbasedir="%BASEDIR%" com.arcadsoftware.skipper.cli.SkipperCLI %CMD_LINE_ARGS% if %ERRORLEVEL% NEQ 0 goto error goto end
It causes the script to crash if %JAVACMD% contains whitespaces. E.g.: C:\Program Files\Java\jdk8u252-b09\bin\java.exe
C:\Program Files\Java\jdk8u252-b09\bin\java.exe
The text was updated successfully, but these errors were encountered:
Fixes mojohaus#114 - Unquoted %JAVACMD% in Windows script
4be1bce
This prevents the Windows script from crashing if %JAVACMD% contains whitespace.
3926aa7
Merge pull request #1 from sebjulliand/fix-issue-114
bb29ce2
No branches or pull requests
Here in the Windows script, %JAVACMD% is unquoted:
It causes the script to crash if %JAVACMD% contains whitespaces. E.g.:
C:\Program Files\Java\jdk8u252-b09\bin\java.exe
The text was updated successfully, but these errors were encountered: