Merge pull request #1937 from dotnet/brthor/disable-parallel

disable parallel in run-build
This commit is contained in:
Bryan Thornbury 2016-03-17 17:22:48 -07:00
commit e847c449bf
2 changed files with 2 additions and 2 deletions

View file

@ -72,7 +72,7 @@ $env:PATH = "$env:DOTNET_INSTALL_DIR\cli\bin;$env:PATH"
# Restore the build scripts
Write-Host "Restoring Build Script projects..."
pushd $PSScriptRoot
dotnet restore
dotnet restore --disable-parallel
if($LASTEXITCODE -ne 0) { throw "Failed to restore" }
popd

View file

@ -102,7 +102,7 @@ fi
echo "Restoring Build Script projects..."
(
cd $DIR
dotnet restore
dotnet restore --disable-parallel
)
# Build the builder