Skip to content

Commit a6bc06f

Browse files
authored
build: escape > metachar in vcbuild
Escape the > metachar in vcbuild.bat to avoid that a file named as the major node version number is created. PR-URL: #58157 Refs: #57991 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Stefan Stojanovic <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 7e24ebc commit a6bc06f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vcbuild.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ call :getnodeversion || exit /b 1
241241
set NODE_MAJOR_VERSION=
242242
for /F "tokens=1 delims=." %%i in ("%NODE_VERSION%") do set "NODE_MAJOR_VERSION=%%i"
243243
if %NODE_MAJOR_VERSION% GEQ 24 (
244-
echo Using ClangCL because the Node.js version being compiled is >= 24.
244+
echo Using ClangCL because the Node.js version being compiled is ^>= 24.
245245
set clang_cl=1
246246
)
247247

0 commit comments

Comments
 (0)