diff --git a/run-build.ps1 b/run-build.ps1 index 74f48ccbd..0ff6efd1b 100644 --- a/run-build.ps1 +++ b/run-build.ps1 @@ -6,6 +6,8 @@ param( [string]$Configuration="Debug", [string]$Architecture="x64", + # This is here just to eat away this parameter because CI still passes this in. + [string]$Targets="Default" [switch]$NoPackage, [switch]$Help, [Parameter(Position=0, ValueFromRemainingArguments=$true)] diff --git a/run-build.sh b/run-build.sh index d92099b94..35494371e 100755 --- a/run-build.sh +++ b/run-build.sh @@ -43,6 +43,10 @@ while [[ $# > 0 ]]; do ARCHITECTURE=$2 shift ;; + --targets) + # This is here just to eat away this parameter because CI still passes this in. + shift + ;; --help) echo "Usage: $0 [--configuration ] [--targets ] [--skip-prereqs] [--nopackage] [--docker ] [--help]" echo ""