Update prysm.sh to fail fast on armv7l (#5621)

* Update prysm.sh
* Merge branch 'master' into prestonvanloon-patch-1
This commit is contained in:
Preston Van Loon 2020-04-25 13:44:17 -07:00 committed by GitHub
parent 8a9c9607a5
commit faa5b309a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,6 +91,11 @@ elif [[ "$os_arch_suffix" == *"arm64"* ]]; then
arch="arm64"
fi
if [[ "$arch" == "armv7l" ]]; then
color "31" "32-bit ARM is not supported. Please install a 64-bit operating system."
exit 1
fi
mkdir -p $wrapper_dir
function get_prysm_version() {