Include dev deps in classpath for batch files
This commit is contained in:
parent
373a71837f
commit
42391c8b08
2 changed files with 2 additions and 2 deletions
|
|
@ -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!"
|
||||
|
|
|
|||
|
|
@ -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!"
|
||||
|
|
|
|||
Loading…
Reference in a new issue