Skip to content

Commit 30319d8

Browse files
committed
[bug fix] file path problems on Windows
1 parent f1c089b commit 30319d8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tools/data-management/export-data.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if not [%home%] == [] set homeOption=-Dcivilizer.private_home_path=%home%
2626

2727
cd "!extraPath!\.."
2828
echo [ %hostScript% ] Exporting Data...
29-
java -cp "%classPath%" "%homeOption%" com.civilizer.extra.tools.DataBroker -export %exportPath%
29+
java -cp "%classPath%" %homeOption% com.civilizer.extra.tools.DataBroker -export %exportPath%
3030

3131
:: Everything is OK... :-)
3232
goto :eof

tools/data-management/import-data.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if not [%home%] == [] set homeOption=-Dcivilizer.private_home_path=%home%
2525

2626
cd "!extraPath!\.."
2727
echo [ %hostScript% ] Importing Data...
28-
java -cp "%classPath%" "%homeOption%" com.civilizer.extra.tools.DataBroker -import %importPath%
28+
java -cp "%classPath%" %homeOption% com.civilizer.extra.tools.DataBroker -import %importPath%
2929

3030
:: Everything is OK... :-)
3131
goto :eof

tools/run/run-civilizer.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if exist "..\pom.xml" cd ..
3232
echo [ %hostScript% ] Loading Civilizer...
3333
java -Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog ^
3434
-Dorg.eclipse.jetty.LEVEL=INFO ^
35-
-cp "%classPath%" com.civilizer.extra.tools.Launcher --port %port% --home "%home%"
35+
-cp "%classPath%" com.civilizer.extra.tools.Launcher --port %port% --home %home%
3636

3737
:: Everything is OK... :-)
3838
goto :eof

0 commit comments

Comments
 (0)