summaryrefslogtreecommitdiff
path: root/download-latest.sh
diff options
context:
space:
mode:
authorDaniel Lienert <[email protected]>2023-02-15 08:53:00 +0100
committerGitHub <[email protected]>2023-02-15 08:53:00 +0100
commitb834b53cd213aecfb3da303137c351b33b5957cb (patch)
treeb444164ebfc4e5f2519cd0a4209e06572d9d0d65 /download-latest.sh
parente29d17759dd9314f8b158242bf10184727242597 (diff)
[#1463]: chore(bash): recognize aarch64 as arm64
Diffstat (limited to 'download-latest.sh')
-rw-r--r--download-latest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/download-latest.sh b/download-latest.sh
index dc0b79de..eec24c11 100644
--- a/download-latest.sh
+++ b/download-latest.sh
@@ -100,7 +100,7 @@ get_arch() {
;;
# case 2
- 'arm64')
+ 'arm64' | 'aarch64')
arch='arm64'
;;