Skip to content

Commit

Permalink
Automated dotnet-install script update
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 18, 2024
1 parent f91ff3c commit 389a1e8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/dotnet/scripts/vendor/dotnet-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,11 @@ get_machine_architecture() {
return 0
;;
aarch64|arm64)
if [ "$(getconf LONG_BIT)" -lt 64 ]; then
# This is 32-bit OS running on 64-bit CPU (for example Raspberry Pi OS)
echo "arm"
return 0
fi
echo "arm64"
return 0
;;
Expand Down

0 comments on commit 389a1e8

Please sign in to comment.