Skip to content

Commit

Permalink
Update prysm.sh to fail fast on armv7l (#5621)
Browse files Browse the repository at this point in the history
* Update prysm.sh
* Merge branch 'master' into prestonvanloon-patch-1
  • Loading branch information
prestonvanloon authored Apr 25, 2020
1 parent 8a9c960 commit faa5b30
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions prysm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit faa5b30

Please sign in to comment.