We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 112f088 commit 0ad967eCopy full SHA for 0ad967e
eng/common/TestResources/New-TestResources.ps1
@@ -83,7 +83,14 @@ param (
83
[switch] $OutFile,
84
85
[Parameter()]
86
- [switch] $SuppressVsoCommands = ($null -eq $env:SYSTEM_TEAMPROJECTID)
+ [switch] $SuppressVsoCommands = ($null -eq $env:SYSTEM_TEAMPROJECTID),
87
+
88
+ # Captures any arguments not declared here (no parameter errors)
89
+ # This enables backwards compatibility with old script versions in
90
+ # hotfix branches if and when the dynamic subscription configuration
91
+ # secrets get updated to add new parameters.
92
+ [Parameter(ValueFromRemainingArguments = $true)]
93
+ $NewTestResourcesRemainingArguments
94
)
95
96
. $PSScriptRoot/SubConfig-Helpers.ps1
0 commit comments