Skip to content

Commit

Permalink
Merge pull request #1 from mgreter/master
Browse files Browse the repository at this point in the history
Fixed java lib path in windows commandline batch
  • Loading branch information
dpolivy committed Apr 12, 2013
2 parents beeecf8 + 89b7d71 commit 658d444
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/main/bin/smartsprites.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
@echo off

rem
rem Get directory to us
rem
set ROOT=%~dp0

rem
rem Add extra JVM options here
rem
Expand All @@ -21,4 +26,5 @@ goto setupArgs
rem
rem Launch SmartSprites
rem
java %OPTS% -Djava.ext.dirs=%~dp0lib org.carrot2.labs.smartsprites.SmartSprites %CMD_LINE_ARGS%
java %OPTS% -Djava.ext.dirs="%ROOT%lib" org.carrot2.labs.smartsprites.SmartSprites %CMD_LINE_ARGS%

0 comments on commit 658d444

Please sign in to comment.