Skip to content

Commit

Permalink
Use semicolon to separate paths instead of colon for loop.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
dhanji committed May 31, 2012
1 parent 956926f commit a218b3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loop.bat
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if not "%LOOP_HOME%" == "" goto gotHome
cd..
set LOOP_HOME=%cd%
:gotHome
if exist "%LOOP_HOME%\lib\loop.jar" goto okHome
if exist "%LOOP_HOME%\loop.jar" goto okHome
rem LOOP_HOME is not set correctly
rem Failed to launch ...
:okHome
Expand All @@ -19,4 +19,4 @@ rem Get parameters string
set PARAMS=%*


java -classpath %LOOP_HOME%\lib\loop.jar;lib\* loop.Loop %PARAMS%
java -classpath %LOOP_HOME%\loop.jar;lib\* loop.Loop %PARAMS%

0 comments on commit a218b3b

Please sign in to comment.