Run update installers

This commit is contained in:
panticmilos
2022-08-31 17:40:05 +02:00
parent 4d1b6c2c63
commit d45c10e6f7
2 changed files with 175 additions and 163 deletions

View File

@ -306,6 +306,10 @@ get_machine_architecture() {
echo "arm64"
return 0
;;
s390x)
echo "s390x"
return 0
;;
esac
fi
@ -339,6 +343,10 @@ get_normalized_architecture_from_architecture() {
echo "arm64"
return 0
;;
s390x)
echo "s390x"
return 0
;;
esac
say_err "Architecture \`$architecture\` not supported. If you think this is a bug, report it at https://github.com/dotnet/install-scripts/issues"
@ -1587,7 +1595,7 @@ do
echo " -InstallDir"
echo " --architecture <ARCHITECTURE> Architecture of dotnet binaries to be installed, Defaults to \`$architecture\`."
echo " --arch,-Architecture,-Arch"
echo " Possible values: x64, arm, and arm64"
echo " Possible values: x64, arm, arm64 and s390x"
echo " --os <system> Specifies operating system to be used when selecting the installer."
echo " Overrides the OS determination approach used by the script. Supported values: osx, linux, linux-musl, freebsd, rhel.6."
echo " In case any other value is provided, the platform will be determined by the script based on machine configuration."