Skip to content

Commit

Permalink
Merge pull request #608 from andreineculau/patch-2
Browse files Browse the repository at this point in the history
install.sh: correct detection of arm64 on Linux
  • Loading branch information
MikeMcQuaid committed Jan 4, 2022
2 parents 2252546 + 73a69b8 commit abe5c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Expand Up @@ -527,7 +527,7 @@ then
fi
else
# On Linux, support only 64-bit Intel
if [[ "${UNAME_MACHINE}" == "arm64" ]]
if [[ "${UNAME_MACHINE}" == "aarch64" ]]
then
abort "$(
cat <<EOABORT
Expand Down

0 comments on commit abe5c4f

Please sign in to comment.