From 7f734f0a186ce6f67e8716c99fd191003b9c6153 Mon Sep 17 00:00:00 2001 From: k-nasa Date: Mon, 20 Sep 2021 20:57:47 +0900 Subject: [PATCH] get x84 binary --- download-latest.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/download-latest.sh b/download-latest.sh index 99c6cba05..5565fb3f7 100644 --- a/download-latest.sh +++ b/download-latest.sh @@ -140,10 +140,10 @@ get_os() { get_archi() { architecture=$(uname -m) case "$architecture" in - 'x86_64' | 'amd64') + 'x86_64' | 'amd64' | 'arm64') archi='amd64' ;; - 'aarch64' | 'arm64') + 'aarch64') archi='armv8' ;; *)