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

Commit 510cff4

Browse files
Enabling ubuntu.18.04,opensuse.42.3 and fedora.27 in dotnet-install script
1 parent 56a56aa commit 510cff4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

scripts/obtain/dotnet-install.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ get_legacy_os_name_from_platform() {
7979
echo "fedora.23"
8080
return 0
8181
;;
82+
"fedora.27")
83+
echo "fedora.27"
84+
return 0
85+
;;
8286
"fedora.24")
8387
echo "fedora.24"
8488
return 0
@@ -91,6 +95,10 @@ get_legacy_os_name_from_platform() {
9195
echo "opensuse.42.1"
9296
return 0
9397
;;
98+
"opensuse.42.3")
99+
echo "opensuse.42.3"
100+
return 0
101+
;;
94102
"rhel.7"*)
95103
echo "rhel"
96104
return 0
@@ -107,6 +115,10 @@ get_legacy_os_name_from_platform() {
107115
echo "ubuntu.16.10"
108116
return 0
109117
;;
118+
"ubuntu.18.04")
119+
echo "ubuntu.18.04"
120+
return 0
121+
;;
110122
"alpine.3.4.3")
111123
echo "alpine"
112124
return 0

0 commit comments

Comments
 (0)