Update the install scripts to use the preview channel.
Also the default now is the beta channel which has the latest 'preview1' builds.
This commit is contained in:
parent
aa94c51271
commit
2d435ac880
4 changed files with 23 additions and 13 deletions
8
scripts/obtain/dotnet-install.sh
vendored
8
scripts/obtain/dotnet-install.sh
vendored
|
@ -288,10 +288,14 @@ get_azure_channel_from_channel() {
|
|||
echo "dev"
|
||||
return 0
|
||||
;;
|
||||
preview|beta)
|
||||
beta)
|
||||
echo "beta"
|
||||
return 0
|
||||
;;
|
||||
preview)
|
||||
echo "preview"
|
||||
return 0
|
||||
;;
|
||||
production)
|
||||
say_err "Production channel does not exist yet"
|
||||
return 1
|
||||
|
@ -528,7 +532,7 @@ local_version_file_relative_path="/.version"
|
|||
bin_folder_relative_path=""
|
||||
temporary_file_template="${TMPDIR:-/tmp}/dotnet.XXXXXXXXX"
|
||||
|
||||
channel="preview"
|
||||
channel="beta"
|
||||
version="Latest"
|
||||
install_dir="<auto>"
|
||||
architecture="<auto>"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue