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 b4eee12 commit 66171f0Copy full SHA for 66171f0
eng/common/scripts/SetTestPipelineVersion.ps1
@@ -119,6 +119,10 @@ if ($Artifacts -and $Artifacts.Count -gt 0) {
119
}
120
} elseif (![String]::IsNullOrWhiteSpace($PackageNames)) {
121
# Fallback to original logic when using PackageNames string
122
+ if ([String]::IsNullOrWhiteSpace($ServiceDirectory)) {
123
+ LogError "ServiceDirectory is required when using PackageNames."
124
+ exit 1
125
+ }
126
$packageNamesArray = @()
127
$packageNamesArray = $PackageNames.Split(',')
128
foreach ($packageName in $packageNamesArray) {
0 commit comments