Skip to content

Commit

Permalink
Include dev deps in classpath for batch files
Browse files Browse the repository at this point in the history
  • Loading branch information
trptcolin committed Nov 29, 2011
1 parent 373a718 commit 42391c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setLocal EnableDelayedExpansion

set CLASSPATH="
for %%j in (".\lib\*.jar") do (
for %%j in (".\lib\*.jar", ".\lib\dev\*.jar") do (
set CLASSPATH=!CLASSPATH!;%%~fj
)
set CLASSPATH=!CLASSPATH!"
Expand Down
2 changes: 1 addition & 1 deletion script/test.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setLocal EnableDelayedExpansion

set CLASSPATH="
for %%j in (".\lib\*.jar") do (
for %%j in (".\lib\*.jar", ".\lib\dev\*.jar") do (
set CLASSPATH=!CLASSPATH!;%%~fj
)
set CLASSPATH=!CLASSPATH!"
Expand Down

0 comments on commit 42391c8

Please sign in to comment.