aboutsummaryrefslogtreecommitdiff
path: root/src/dotnet/scripts/vendor
diff options
context:
space:
mode:
authorDev containers Bot <126614555+devcontainers-bot@users.noreply.github.com>2023-11-14 20:56:03 +0300
committerGitHub <noreply@github.com>2023-11-14 20:56:03 +0300
commitd53b9d1816bac7a62f9ba5f20723eef428042d1f (patch)
treef7e713566c82f25920faf0c3050331634449bba9 /src/dotnet/scripts/vendor
parent710103a6382810faade9f37f180bac038c8f38aa (diff)
[Updates] Automated vendor dotnet-install script (#750)
* Automated dotnet-install script update * Bump version --------- Co-authored-by: github-actions <github-actions@github.com>
Diffstat (limited to 'src/dotnet/scripts/vendor')
-rwxr-xr-xsrc/dotnet/scripts/vendor/dotnet-install.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/dotnet/scripts/vendor/dotnet-install.sh b/src/dotnet/scripts/vendor/dotnet-install.sh
index 4547589..b350ad4 100755
--- a/src/dotnet/scripts/vendor/dotnet-install.sh
+++ b/src/dotnet/scripts/vendor/dotnet-install.sh
@@ -423,8 +423,13 @@ get_normalized_os() {
echo "$osname"
return 0
;;
+ macos)
+ osname='osx'
+ echo "$osname"
+ return 0
+ ;;
*)
- say_err "'$user_defined_os' is not a supported value for --os option, supported values are: osx, linux, linux-musl, freebsd, rhel.6. If you think this is a bug, report it at https://github.com/dotnet/install-scripts/issues."
+ say_err "'$user_defined_os' is not a supported value for --os option, supported values are: osx, macos, linux, linux-musl, freebsd, rhel.6. If you think this is a bug, report it at https://github.com/dotnet/install-scripts/issues."
return 1
;;
esac