Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 5e029a1

Browse files
authored
Merge pull request #435 from wtgodbe/newChannelRel
Point to correct version of CLI so we have a good version for OpenSUS…
2 parents 24a391c + 5841a8f commit 5e029a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build_projects/dotnet-host-build/build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ if (!(Test-Path "$RepoRoot\artifacts"))
101101
$DOTNET_INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.ps1"
102102
Invoke-WebRequest $DOTNET_INSTALL_SCRIPT_URL -OutFile "$RepoRoot\artifacts\dotnet-install.ps1"
103103

104-
& "$RepoRoot\artifacts\dotnet-install.ps1" -Channel Sdk -Version 1.0.0-preview3-003223 -Architecture $Architecture -Verbose
104+
& "$RepoRoot\artifacts\dotnet-install.ps1" -Version 1.0.0-preview3-003223-3 -Architecture $Architecture -Verbose
105105
if($LASTEXITCODE -ne 0) { throw "Failed to install stage0" }
106106

107107
# Put the stage0 on the path

build_projects/dotnet-host-build/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ done < "$REPOROOT/branchinfo.txt"
9595

9696

9797
DOTNET_INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh"
98-
curl -sSL "$DOTNET_INSTALL_SCRIPT_URL" | bash /dev/stdin --channel Sdk --version 1.0.0-preview3-003223 --verbose
98+
curl -sSL "$DOTNET_INSTALL_SCRIPT_URL" | bash /dev/stdin --version 1.0.0-preview3-003223-3 --verbose
9999

100100
# Put stage 0 on the PATH (for this shell only)
101101
PATH="$DOTNET_INSTALL_DIR:$PATH"

0 commit comments

Comments
 (0)