File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ classpathArgs () {
5959 CLASS_PATH+=" $( find_lib " *scala3-interfaces*" ) $PSEP "
6060 CLASS_PATH+=" $( find_lib " *scala3-library*" ) $PSEP "
6161 CLASS_PATH+=" $( find_lib " *tasty-core*" ) $PSEP "
62+ CLASS_PATH+=" $( find_lib " *scala3-staging*" ) $PSEP "
6263 CLASS_PATH+=" $( find_lib " *scala3-tasty-inspector*" ) $PSEP "
6364 CLASS_PATH+=" $( find_lib " *flexmark-0*" ) $PSEP "
6465 CLASS_PATH+=" $( find_lib " *flexmark-html-parser*" ) $PSEP "
@@ -97,7 +98,6 @@ classpathArgs () {
9798 CLASS_PATH+=" $( find_lib " *flexmark-ext-ins*" ) $PSEP "
9899 CLASS_PATH+=" $( find_lib " *flexmark-ext-superscript*" ) $PSEP "
99100 CLASS_PATH+=" $( find_lib " *antlr4-runtime*" ) $PSEP "
100- CLASS_PATH+=" $( find_lib " *ST4*" ) "
101101
102102 jvm_cp_args=" -classpath \" $CLASS_PATH \" "
103103}
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ call :updateClasspath "scala3-compiler"
106106call :updateClasspath " scala3-interfaces"
107107call :updateClasspath " scala3-library"
108108call :updateClasspath " tasty-core"
109+ call :updateClasspath " scala3-staging"
109110call :updateClasspath " scala3-tasty-inspector"
110111call :updateClasspath " flexmark-0"
111112call :updateClasspath " flexmark-html-parser"
@@ -144,14 +145,13 @@ call :updateClasspath "flexmark-ext-tables"
144145call :updateClasspath " flexmark-ext-ins"
145146call :updateClasspath " flexmark-ext-superscript"
146147call :updateClasspath " antlr4-runtime"
147- call :updateClasspath " ST4"
148148goto :eof
149149
150150@ rem input parameter: %1=pattern for library file
151151@ rem output parameter: _CLASS_PATH
152152:updateClasspath
153153set " __PATTERN = %~1 "
154- for /f " delims=" %%f in ('dir /a-d /b " %_LIB_DIR% \*%__PATTERN% *" ') do (
154+ for /f " delims=" %%f in ('dir /a-d /b " %_LIB_DIR% \*%__PATTERN% *" 2 ^ > NUL ') do (
155155 set " _CLASS_PATH = !_CLASS_PATH!%_LIB_DIR% \%%f %_PSEP% "
156156)
157157goto :eof
You can’t perform that action at this time.
0 commit comments