mirror of https://github.com/apache/cassandra
fix starting up on Windows when CASSANDRA_HOME contains whitespace
patch by Norman Maurer; reviewed by jbellis for CASSANDRA-2237 git-svn-id: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-0.7@1074276 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
53286d56f0
commit
dd0da7cbbe
|
|
@ -31,6 +31,8 @@
|
|||
(CASSANDRA-2206)
|
||||
* fix supercolumn de/serialization when subcolumn comparator is different
|
||||
from supercolumn's (CASSANDRA-2104)
|
||||
* fix starting up on Windows when CASSANDRA_HOME contains whitespace
|
||||
(CASSANDRA-2237)
|
||||
|
||||
|
||||
0.7.2
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ set JAVA_OPTS=^
|
|||
REM ***** CLASSPATH library setting *****
|
||||
|
||||
REM Ensure that any user defined CLASSPATH variables are not used on startup
|
||||
set CLASSPATH=%CASSANDRA_HOME%\conf
|
||||
set CLASSPATH="%CASSANDRA_HOME%\conf"
|
||||
|
||||
REM For each jar in the CASSANDRA_HOME lib directory call append to build the CLASSPATH variable.
|
||||
for %%i in ("%CASSANDRA_HOME%\lib\*.jar") do call :append "%%i"
|
||||
|
|
|
|||
Loading…
Reference in New Issue