Skip to content

Commit

Permalink
Merge pull request #3703 from MahApps/GH-3702
Browse files Browse the repository at this point in the history
Fix Cake build error
  • Loading branch information
punker76 authored Nov 28, 2019
2 parents 23d2b57 + a3491b0 commit b9c64e4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -238,5 +238,11 @@ $cakeArguments += $ScriptArgs

# Start Cake
Write-Host "Running build script..."
&$CAKE_EXE $cakeArguments
exit $LASTEXITCODE

& "$CAKE_EXE" ./build.cake --bootstrap
if ($LASTEXITCODE -eq 0)
{
& "$CAKE_EXE" $cakeArguments
}

exit $LASTEXITCODE

0 comments on commit b9c64e4

Please # to comment.