Skip to content

Commit 76f3bb3

Browse files
legendecasmarco-ippolito
authored andcommitted
build: generate binlog in out directories
Directories link `Release\` will be created as a junction to `out\Release` when build completes. When binlog was written to `Release\` before the junction is created, the build will fail for unable to create junction when directory `Release\` already exists. PR-URL: #53325 Reviewed-By: Stefan Stojanovic <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 8689ce4 commit 76f3bb3

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
@@ -139,7 +139,7 @@ if /i "%1"=="cctest" set cctest=1&goto arg-ok
139139
if /i "%1"=="openssl-no-asm" set openssl_no_asm=1&goto arg-ok
140140
if /i "%1"=="no-shared-roheap" set no_shared_roheap=1&goto arg-ok
141141
if /i "%1"=="doc" set doc=1&goto arg-ok
142-
if /i "%1"=="binlog" set extra_msbuild_args=/binaryLogger:%config%\node.binlog&goto arg-ok
142+
if /i "%1"=="binlog" set extra_msbuild_args=/binaryLogger:out\%config%\node.binlog&goto arg-ok
143143

144144
echo Error: invalid command line option `%1`.
145145
exit /b 1

0 commit comments

Comments
 (0)