Skip to content

Commit

Permalink
BuildNativeUWP.ps1 fix
Browse files Browse the repository at this point in the history
- exit with non zero-code on error
  • Loading branch information
Sergey Komisarchik committed Jul 3, 2017
1 parent 813828d commit 19f49a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion BuildNativeUWP.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ if ($customLogger) {
else {
& $msbuild $proj /verbosity:minimal /t:Restore
& $msbuild $proj /verbosity:minimal /t:Build /p:Configuration=Release
}
}

if ($LASTEXITCODE -ne 0) { exit 4 }

0 comments on commit 19f49a7

Please sign in to comment.