Skip to content

Commit

Permalink
build: call setlocal in vcbuild.bat
Browse files Browse the repository at this point in the history
Currently the variables set in vcbuild.bat are mostly global and
escape/leak out into the calling process. For example, running
vcbuild.bat test and then echoing the config variable gives:

vcbuild.bat test
...
echo %config%
Release

After this change the same command give:
vcbuild.bat test
...
echo %config%
%config%

PR-URL: #15754
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
danbev committed Oct 5, 2017
1 parent 212b12c commit b9a55a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vcbuild.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@echo off

setlocal EnableExtensions

cd %~dp0

if /i "%1"=="help" goto help
Expand Down

0 comments on commit b9a55a9

Please sign in to comment.