From 856f6a7d9613d7789f8cf771c201339929dee2ed Mon Sep 17 00:00:00 2001 From: Krzysztof Wicher Date: Thu, 10 Mar 2016 16:39:56 -0800 Subject: [PATCH] integrate new version of install.sh with build --- scripts/dotnet-cli-build/Utils/DotNetCli.cs | 2 +- scripts/run-build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dotnet-cli-build/Utils/DotNetCli.cs b/scripts/dotnet-cli-build/Utils/DotNetCli.cs index c3a22c81f..a256a7df7 100644 --- a/scripts/dotnet-cli-build/Utils/DotNetCli.cs +++ b/scripts/dotnet-cli-build/Utils/DotNetCli.cs @@ -41,7 +41,7 @@ namespace Microsoft.DotNet.Cli.Build } else { - return Path.Combine(Directory.GetCurrentDirectory(), ".dotnet_stage0", PlatformServices.Default.Runtime.OperatingSystemPlatform.ToString(), "share", "dotnet", "bin"); + return Path.Combine(Directory.GetCurrentDirectory(), ".dotnet_stage0", PlatformServices.Default.Runtime.OperatingSystemPlatform.ToString(), "bin"); } } diff --git a/scripts/run-build.sh b/scripts/run-build.sh index 176f1a679..8baa9bbef 100755 --- a/scripts/run-build.sh +++ b/scripts/run-build.sh @@ -85,7 +85,7 @@ done < "$DIR/../branchinfo.txt" # Ensure the latest stage0 is installed export CHANNEL=$RELEASE_SUFFIX -$DIR/obtain/install.sh --channel $CHANNEL +$DIR/obtain/install.sh --channel $CHANNEL --version 1.0.0.001665 --verbose # Put stage 0 on the PATH (for this shell only) PATH="$DOTNET_INSTALL_DIR/cli:$PATH"