diff options
author | Daniel Lienert <[email protected]> | 2023-02-15 08:53:00 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-15 08:53:00 +0100 |
commit | b834b53cd213aecfb3da303137c351b33b5957cb (patch) | |
tree | b444164ebfc4e5f2519cd0a4209e06572d9d0d65 /download-latest.sh | |
parent | e29d17759dd9314f8b158242bf10184727242597 (diff) |
[#1463]: chore(bash): recognize aarch64 as arm64
Diffstat (limited to 'download-latest.sh')
-rw-r--r-- | download-latest.sh | 2 |
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' ;; |