Skip to content

Commit

Permalink
Fix issue #5273 for get script on armv7l (#5275)
Browse files Browse the repository at this point in the history
This fixes issue #5273 in the get script by making the armv7l
architecture point at the correctly named "arm" binary on the
release page.

Signed-off-by: Alex Ellis <alexellis2@gmail.com>
  • Loading branch information
alexellis authored and Matthew Fisher committed Feb 6, 2019
1 parent 16c10be commit 6e26320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/get
Expand Up @@ -29,7 +29,7 @@ initArch() {
case $ARCH in
armv5*) ARCH="armv5";;
armv6*) ARCH="armv6";;
armv7*) ARCH="armv7";;
armv7*) ARCH="arm";;
aarch64) ARCH="arm64";;
x86) ARCH="386";;
x86_64) ARCH="amd64";;
Expand Down

0 comments on commit 6e26320

Please sign in to comment.