Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 2 additions & 11 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -551,18 +551,9 @@ then
abort "Homebrew is only supported on Intel and ARM processors!"
fi
else
# On Linux, support only 64-bit Intel
if [[ "${UNAME_MACHINE}" == "aarch64" ]]
if [[ "${UNAME_MACHINE}" != "x86_64" ]] && [[ "${UNAME_MACHINE}" != "aarch64" ]]
then
abort "$(
cat <<EOABORT
Homebrew on Linux is not supported on ARM processors.
${tty_underline}https://docs.brew.sh/Homebrew-on-Linux#arm-unsupported${tty_reset}
EOABORT
)"
elif [[ "${UNAME_MACHINE}" != "x86_64" ]]
then
abort "Homebrew on Linux is only supported on Intel processors!"
abort "Homebrew on Linux is only supported on Intel x86_64 and ARM64 processors!"
fi
fi

Expand Down