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

Commit 229518b

Browse files
author
John Beisner
committed
Default channel in the install scripts; dotnet-install.ps1 and dotnet-install.sh = “release/1.0.0”
For the Runtime: resolves to: 1.0.5 For the SDK: resolves to: 1.0.4
1 parent 1ded4f1 commit 229518b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/obtain/dotnet-install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
Installs dotnet cli. If dotnet installation already exists in the given directory
1111
it will update it only if the requested version differs from the one already installed.
1212
.PARAMETER Channel
13-
Default: master
13+
Default: release/1.0.0
1414
Download from the Channel specified
1515
.PARAMETER Version
1616
Default: latest
@@ -55,7 +55,7 @@
5555
#>
5656
[cmdletbinding()]
5757
param(
58-
[string]$Channel="master",
58+
[string]$Channel="release/1.0.0",
5959
[string]$Version="Latest",
6060
[string]$InstallDir="<auto>",
6161
[string]$Architecture="<auto>",

scripts/obtain/dotnet-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ local_version_file_relative_path="/.version"
659659
bin_folder_relative_path=""
660660
temporary_file_template="${TMPDIR:-/tmp}/dotnet.XXXXXXXXX"
661661

662-
channel="master"
662+
channel="release/1.0.0"
663663
version="Latest"
664664
install_dir="<auto>"
665665
architecture="<auto>"

0 commit comments

Comments
 (0)