File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ classpathArgs () {
9797 CLASS_PATH+=" $( find_lib " *flexmark-ext-ins*" ) $PSEP "
9898 CLASS_PATH+=" $( find_lib " *flexmark-ext-superscript*" ) $PSEP "
9999 CLASS_PATH+=" $( find_lib " *antlr4-runtime*" ) $PSEP "
100- CLASS_PATH+=" $( find_lib " *ST4*" ) "
101100
102101 jvm_cp_args=" -classpath \" $CLASS_PATH \" "
103102}
Original file line number Diff line number Diff line change @@ -144,14 +144,13 @@ call :updateClasspath "flexmark-ext-tables"
144144call :updateClasspath " flexmark-ext-ins"
145145call :updateClasspath " flexmark-ext-superscript"
146146call :updateClasspath " antlr4-runtime"
147- call :updateClasspath " ST4"
148147goto :eof
149148
150149@ rem input parameter: %1=pattern for library file
151150@ rem output parameter: _CLASS_PATH
152151:updateClasspath
153152set " __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 (
155154 set " _CLASS_PATH = !_CLASS_PATH!%_LIB_DIR% \%%f %_PSEP% "
156155)
157156goto :eof
You can’t perform that action at this time.
0 commit comments