You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -128,10 +128,15 @@ function VerifyPackages($artifactLocation, $workingDirectory, $apiUrl, $releaseS
128
128
continue
129
129
}
130
130
131
+
if ($packageFilter-and$parsedPackage.PackageId-notlike$packageFilter) {
132
+
Write-Host"Skipping package $($parsedPackage.PackageId) not matching filter $packageFilter"
133
+
continue
134
+
}
135
+
131
136
if ($parsedPackage.Deployable-ne$True-and!$continueOnError) {
132
137
Write-Host"Package $($parsedPackage.PackageId) is marked with version $($parsedPackage.PackageVersion), the version $($parsedPackage.PackageVersion) has already been deployed to the target repository."
133
138
Write-Host"Maybe a pkg version wasn't updated properly?"
134
-
exit(1)
139
+
exit1
135
140
}
136
141
$docsReadMeName=$parsedPackage.PackageId
137
142
if ($parsedPackage.DocsReadMeName) {
@@ -150,7 +155,7 @@ function VerifyPackages($artifactLocation, $workingDirectory, $apiUrl, $releaseS
150
155
}
151
156
catch {
152
157
Write-Host$_.Exception.Message
153
-
exit(1)
158
+
exit1
154
159
}
155
160
}
156
161
@@ -197,6 +202,6 @@ function CheckArtifactShaAgainstTagsList($priorExistingTagList, $releaseSha, $ap
197
202
198
203
if ($unmatchedTags.Length-gt0-and!$continueOnError) {
199
204
Write-Host"Tags already existing with different SHA versions. Exiting."
0 commit comments