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
Copy file name to clipboardExpand all lines: eng/common/scripts/Create-APIReview.ps1
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -337,10 +337,10 @@ function ProcessPackage($packageInfo)
337
337
{
338
338
if (!$apiStatus.IsApproved)
339
339
{
340
-
Write-Error"Package version $($version) is GA and automatic API Review is not yet approved for package $($packageInfo.ArtifactName)."
341
-
Write-Error"Build and release is not allowed for GA package without API review approval."
342
-
Write-Error"You will need to queue another build to proceed further after API review is approved"
343
-
Write-Error"You can check http://aka.ms/azsdk/engsys/apireview/faq for more details on API Approval."
340
+
Write-Error"Package version $($version) is GA and automatic API Review is not yet approved for package $($packageInfo.ArtifactName)."-ErrorAction Continue
341
+
Write-Error"Build and release is not allowed for GA package without API review approval."-ErrorAction Continue
342
+
Write-Error"You will need to queue another build to proceed further after API review is approved"-ErrorAction Continue
343
+
Write-Error"You can check http://aka.ms/azsdk/engsys/apireview/faq for more details on API Approval."-ErrorAction Continue
0 commit comments