Skip to content

Commit 7e4453f

Browse files
Flarnatargos
authored andcommitted
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 2874542 commit 7e4453f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vcbuild.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ call :getnodeversion || exit /b 1
244244
set NODE_MAJOR_VERSION=
245245
for /F "tokens=1 delims=." %%i in ("%NODE_VERSION%") do set "NODE_MAJOR_VERSION=%%i"
246246
if %NODE_MAJOR_VERSION% GEQ 24 (
247-
echo Using ClangCL because the Node.js version being compiled is >= 24.
247+
echo Using ClangCL because the Node.js version being compiled is ^>= 24.
248248
set clang_cl=1
249249
)
250250

0 commit comments

Comments
 (0)