commit | e6bb4aa457bb9dd3367ce03e7d0c95550e28feae | [log] [tgz] |
---|---|---|
author | Michael Blow <mblow@apache.org> | Mon Sep 19 17:14:12 2016 -0400 |
committer | Michael Blow <mblow@apache.org> | Mon Sep 19 21:11:10 2016 -0700 |
tree | 586f80e0b85bc75a8af2dfe0408eec9be26b9b66 | |
parent | 2f410f4cca9d2a98f102994708484f9bdbee318b [diff] |
Handle Unquoted %JAVA_HOME% Containing Spaces Fixes sample cluster start / stop scripts on windows when the %JAVA_HOME% variable contains spaces but is not surrounded in %double-quotes Change-Id: I10fafe29d76116698f97f0dd126cc5a14928586b Reviewed-on: https://asterix-gerrit.ics.uci.edu/1189 Sonar-Qube: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Reviewed-by: Till Westmann <tillw@apache.org> Integration-Tests: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
diff --git a/asterixdb/asterix-server/src/main/samples/local/bin/start-sample-cluster.bat b/asterixdb/asterix-server/src/main/samples/local/bin/start-sample-cluster.bat index 4d10261..db86560 100644 --- a/asterixdb/asterix-server/src/main/samples/local/bin/start-sample-cluster.bat +++ b/asterixdb/asterix-server/src/main/samples/local/bin/start-sample-cluster.bat
@@ -24,7 +24,8 @@ goto :ERROR ) REM ensure JAVA_HOME has no spaces nor quotes, since appassembler can't handle them -for %%I in (%JAVA_HOME%) do ( +set JAVA_HOME=%JAVA_HOME:"=% +for %%I in ("%JAVA_HOME%") do ( set JAVA_HOME=%%~sI )
diff --git a/asterixdb/asterix-server/src/main/samples/local/bin/stop-sample-cluster.bat b/asterixdb/asterix-server/src/main/samples/local/bin/stop-sample-cluster.bat index dfd1ada..d1f31b0 100644 --- a/asterixdb/asterix-server/src/main/samples/local/bin/stop-sample-cluster.bat +++ b/asterixdb/asterix-server/src/main/samples/local/bin/stop-sample-cluster.bat
@@ -24,7 +24,8 @@ ) REM ensure JAVA_HOME has no spaces nor quotes, since appassembler can't handle them -for %%I in (%JAVA_HOME%) do ( +set JAVA_HOME=%JAVA_HOME:"=% +for %%I in ("%JAVA_HOME%") do ( set JAVA_HOME=%%~sI )