We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 309af34 commit 5ee72b3Copy full SHA for 5ee72b3
install.sh
@@ -551,18 +551,9 @@ then
551
abort "Homebrew is only supported on Intel and ARM processors!"
552
fi
553
else
554
- # On Linux, support only 64-bit Intel
555
- if [[ "${UNAME_MACHINE}" == "aarch64" ]]
+ if [[ "${UNAME_MACHINE}" != "x86_64" ]] && [[ "${UNAME_MACHINE}" != "aarch64" ]]
556
then
557
- abort "$(
558
- cat <<EOABORT
559
-Homebrew on Linux is not supported on ARM processors.
560
- ${tty_underline}https://docs.brew.sh/Homebrew-on-Linux#arm-unsupported${tty_reset}
561
-EOABORT
562
- )"
563
- elif [[ "${UNAME_MACHINE}" != "x86_64" ]]
564
- then
565
- abort "Homebrew on Linux is only supported on Intel processors!"
+ abort "Homebrew on Linux is only supported on Intel & ARM processors!"
566
567
568
0 commit comments