mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-04-05 06:49:48 +00:00
Run update installers
This commit is contained in:
10
externals/install-dotnet.sh
vendored
10
externals/install-dotnet.sh
vendored
@ -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."
|
||||
|
Reference in New Issue
Block a user