From faa5b309a297a3bb53672c2672c301310fbda0a8 Mon Sep 17 00:00:00 2001 From: Preston Van Loon Date: Sat, 25 Apr 2020 13:44:17 -0700 Subject: [PATCH] Update prysm.sh to fail fast on armv7l (#5621) * Update prysm.sh * Merge branch 'master' into prestonvanloon-patch-1 --- prysm.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/prysm.sh b/prysm.sh index b5916d4cc..0602d7f6c 100755 --- a/prysm.sh +++ b/prysm.sh @@ -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() {