File tree 2 files changed +1
-3
lines changed
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ classpathArgs () {
97
97
CLASS_PATH+=" $( find_lib " *flexmark-ext-ins*" ) $PSEP "
98
98
CLASS_PATH+=" $( find_lib " *flexmark-ext-superscript*" ) $PSEP "
99
99
CLASS_PATH+=" $( find_lib " *antlr4-runtime*" ) $PSEP "
100
- CLASS_PATH+=" $( find_lib " *ST4*" ) "
101
100
102
101
jvm_cp_args=" -classpath \" $CLASS_PATH \" "
103
102
}
Original file line number Diff line number Diff line change @@ -144,14 +144,13 @@ call :updateClasspath "flexmark-ext-tables"
144
144
call :updateClasspath " flexmark-ext-ins"
145
145
call :updateClasspath " flexmark-ext-superscript"
146
146
call :updateClasspath " antlr4-runtime"
147
- call :updateClasspath " ST4"
148
147
goto :eof
149
148
150
149
@ rem input parameter: %1=pattern for library file
151
150
@ rem output parameter: _CLASS_PATH
152
151
:updateClasspath
153
152
set " __PATTERN = %~1 "
154
- for /f " delims=" %%f in ('dir /a-d /b " %_LIB_DIR% \*%__PATTERN% *" ') do (
153
+ for /f " delims=" %%f in ('dir /a-d /b " %_LIB_DIR% \*%__PATTERN% *" 2 ^ > NUL ') do (
155
154
set " _CLASS_PATH = !_CLASS_PATH!%_LIB_DIR% \%%f %_PSEP% "
156
155
)
157
156
goto :eof
You can’t perform that action at this time.
0 commit comments