summaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
authorGaurav Khanna <gkhanna@microsoft.com>2017-03-22 21:35:24 -0700
committerGitHub <noreply@github.com>2017-03-22 21:35:24 -0700
commit14792ccacd1209380ba642431fe22f703b9f4060 (patch)
tree3e146bc4f1a242d7dc17691d8cd2f6a3d3790620 /build.cmd
parent741ce0d615bdae442cb3ee184a5a36b30d1a152a (diff)
downloadcoreclr-14792ccacd1209380ba642431fe22f703b9f4060.tar.gz
coreclr-14792ccacd1209380ba642431fe22f703b9f4060.tar.bz2
coreclr-14792ccacd1209380ba642431fe22f703b9f4060.zip
Unify command line arg for portable RID build (#10408)
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.cmd b/build.cmd
index 13c3fb4a66..859eac7b1c 100644
--- a/build.cmd
+++ b/build.cmd
@@ -118,7 +118,7 @@ if /i "%1" == "debug" (set __BuildTypeDebug=1&set processedArgs=!p
if /i "%1" == "checked" (set __BuildTypeChecked=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
if /i "%1" == "release" (set __BuildTypeRelease=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
-if /i "%1" == "portable" (set __IsPortableBuild=-portable&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
+if /i "%1" == "-portable" (set __IsPortableBuild=-portable&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
REM All arguments after this point will be passed through directly to build.cmd on nested invocations
REM using the "all" argument, and must be added to the __PassThroughArgs variable.