diff options
author | Bert Belder <bertbelder@gmail.com> | 2015-03-11 12:01:31 -0700 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2015-03-11 12:01:31 -0700 |
commit | 41c9daa143d1675a7b960e9fd4c1671672d5d7e0 (patch) | |
tree | 1ebd0e0b83476e79c8b6ddd894d93d940918c1c9 /vcbuild.bat | |
parent | 07c066724ced98adcae3f9f97cfcd301b138eb18 (diff) | |
download | node-new-41c9daa143d1675a7b960e9fd4c1671672d5d7e0.tar.gz |
build: fix incorrect set in vcbuild.bat
Thanks Shigeki Ohtsu for catching this.
Diffstat (limited to 'vcbuild.bat')
-rw-r--r-- | vcbuild.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcbuild.bat b/vcbuild.bat index 6fc93b724a..4b0cd730e6 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -57,7 +57,7 @@ if /i "%1"=="test-message" set test_args=%test_args% message&goto arg-ok if /i "%1"=="test-gc" set test_args=%test_args% gc&set buildnodeweak=1&goto arg-ok if /i "%1"=="test-internet" set test_args=%test_args% internet&goto arg-ok if /i "%1"=="test-pummel" set test_args=%test_args% pummel&goto arg-ok -if /i "%1"=="test-all" set test_args=%test_args% sequential parallel message gc internet pummel&buildnodeweak1=1&set jslint=1&goto arg-ok +if /i "%1"=="test-all" set test_args=%test_args% sequential parallel message gc internet pummel&set buildnodeweak=1&set jslint=1&goto arg-ok if /i "%1"=="jslint" set jslint=1&goto arg-ok if /i "%1"=="msi" set msi=1&set licensertf=1&goto arg-ok if /i "%1"=="small-icu" set i18n_arg=%1&goto arg-ok |