Commit 6e26320b authored by Alex Ellis's avatar Alex Ellis Committed by Matthew Fisher

Fix issue #5273 for get script on armv7l (#5275)

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: 's avatarAlex Ellis <alexellis2@gmail.com>
parent 16c10be8
...@@ -29,7 +29,7 @@ initArch() { ...@@ -29,7 +29,7 @@ initArch() {
case $ARCH in case $ARCH in
armv5*) ARCH="armv5";; armv5*) ARCH="armv5";;
armv6*) ARCH="armv6";; armv6*) ARCH="armv6";;
armv7*) ARCH="armv7";; armv7*) ARCH="arm";;
aarch64) ARCH="arm64";; aarch64) ARCH="arm64";;
x86) ARCH="386";; x86) ARCH="386";;
x86_64) ARCH="amd64";; x86_64) ARCH="amd64";;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment