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 () {
59
59
CLASS_PATH+=" $( find_lib " *scala3-interfaces*" ) $PSEP "
60
60
CLASS_PATH+=" $( find_lib " *scala3-library*" ) $PSEP "
61
61
CLASS_PATH+=" $( find_lib " *tasty-core*" ) $PSEP "
62
+ CLASS_PATH+=" $( find_lib " *scala3-staging*" ) $PSEP "
62
63
CLASS_PATH+=" $( find_lib " *scala3-tasty-inspector*" ) $PSEP "
63
64
CLASS_PATH+=" $( find_lib " *flexmark-0*" ) $PSEP "
64
65
CLASS_PATH+=" $( find_lib " *flexmark-html-parser*" ) $PSEP "
@@ -97,7 +98,6 @@ classpathArgs () {
97
98
CLASS_PATH+=" $( find_lib " *flexmark-ext-ins*" ) $PSEP "
98
99
CLASS_PATH+=" $( find_lib " *flexmark-ext-superscript*" ) $PSEP "
99
100
CLASS_PATH+=" $( find_lib " *antlr4-runtime*" ) $PSEP "
100
- CLASS_PATH+=" $( find_lib " *ST4*" ) "
101
101
102
102
jvm_cp_args=" -classpath \" $CLASS_PATH \" "
103
103
}
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ call :updateClasspath "scala3-compiler"
106
106
call :updateClasspath " scala3-interfaces"
107
107
call :updateClasspath " scala3-library"
108
108
call :updateClasspath " tasty-core"
109
+ call :updateClasspath " scala3-staging"
109
110
call :updateClasspath " scala3-tasty-inspector"
110
111
call :updateClasspath " flexmark-0"
111
112
call :updateClasspath " flexmark-html-parser"
@@ -144,14 +145,13 @@ call :updateClasspath "flexmark-ext-tables"
144
145
call :updateClasspath " flexmark-ext-ins"
145
146
call :updateClasspath " flexmark-ext-superscript"
146
147
call :updateClasspath " antlr4-runtime"
147
- call :updateClasspath " ST4"
148
148
goto :eof
149
149
150
150
@ rem input parameter: %1=pattern for library file
151
151
@ rem output parameter: _CLASS_PATH
152
152
:updateClasspath
153
153
set " __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 (
155
155
set " _CLASS_PATH = !_CLASS_PATH!%_LIB_DIR% \%%f %_PSEP% "
156
156
)
157
157
goto :eof
You can’t perform that action at this time.
0 commit comments