Skip to content

Commit 7cd6a7d

Browse files
authored
build: notify about the redundancy of "nosign"
vcbuild doesn't sign by default since 92ed1ab, but there might be people who haven't noticed the change. This adds a message informing them that "nosign" is no longer necessary. PR-URL: #11119 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
1 parent 907ce8d commit 7cd6a7d

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
@@ -51,7 +51,7 @@ if /i "%1"=="x64" set target_arch=x64&goto arg-ok
5151
if /i "%1"=="vc2015" set target_env=vc2015&goto arg-ok
5252
if /i "%1"=="noprojgen" set noprojgen=1&goto arg-ok
5353
if /i "%1"=="nobuild" set nobuild=1&goto arg-ok
54-
if /i "%1"=="nosign" set "sign="&goto arg-ok
54+
if /i "%1"=="nosign" set "sign="&echo Note: vcbuild no longer signs by default. "nosign" is redundant.&goto arg-ok
5555
if /i "%1"=="sign" set sign=1&goto arg-ok
5656
if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok
5757
if /i "%1"=="noetw" set noetw=1&goto arg-ok

0 commit comments

Comments
 (0)