Skip to content

Commit

Permalink
Fix patch verify error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
coloursofnoise committed Oct 3, 2021
1 parent 5855e18 commit 3c8b006
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion azure-pipelines-verify.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,7 @@ Copy-Item -Path "$env:VANILLA_CACHE/*" -Destination $PATCH
Write-Output "Applying Everest patch"
Copy-Item -Path "$env:BUILD_ARTIFACTSTAGINGDIRECTORY/main/*" -Destination $PATCH
$MINIINSTALLER = Start-Process -FilePath "mono" -ArgumentList "$PATCH/MiniInstaller.exe" -WorkingDirectory $PATCH -Wait -PassThru
Write-Output "##vso[task.logissue type=error]Patch verification step failed."
if ($MINIINSTALLER.ExitCode -ne 0) {
Write-Output "##vso[task.logissue type=error]Patch verification step failed."
}
Exit $MINIINSTALLER.ExitCode

0 comments on commit 3c8b006

Please sign in to comment.