From 4220447322639cae39df14d189df915d950203a8 Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Wed, 31 Aug 2016 12:46:24 -0700 Subject: [PATCH] Temporarily hard coding stage0 to come from feature msbuild. This will make a stage0 available that has a dotnet build3 command. Will revert this once we have a rel1.0.0 available with this verb. --- init-tools.ps1 | 2 +- init-tools.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/init-tools.ps1 b/init-tools.ps1 index 5176862d9..cf4b9a174 100644 --- a/init-tools.ps1 +++ b/init-tools.ps1 @@ -11,7 +11,7 @@ $RepoRoot = "$PSScriptRoot" # Install a stage 0 Write-Host "Installing .NET Core CLI Stage 0 from branchinfo channel" -& "$RepoRoot\scripts\obtain\dotnet-install.ps1" -Channel $env:CHANNEL -Architecture $Architecture -Verbose +& "$RepoRoot\scripts\obtain\dotnet-install.ps1" -Channel feature-msbuild -Architecture $Architecture -Verbose if($LASTEXITCODE -ne 0) { throw "Failed to install stage0" } # Put the stage0 on the path diff --git a/init-tools.sh b/init-tools.sh index 2b66c7f83..1fb322d57 100755 --- a/init-tools.sh +++ b/init-tools.sh @@ -14,7 +14,7 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli done DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" -$DIR/scripts/obtain/dotnet-install.sh --channel $CHANNEL --verbose +$DIR/scripts/obtain/dotnet-install.sh --channel feature-msbuild --verbose __init_tools_log=$DIR/init-tools.log __BUILD_TOOLS_CLI_VERSION=$(cat "$DIR/BuildToolsCliVersion.txt")