From 8ab603917cbb53b617157d9ccbe9a27b28b959ff Mon Sep 17 00:00:00 2001 From: Kyle Aleshire Date: Sat, 17 Sep 2022 21:32:56 -0400 Subject: [PATCH] fix: identify reported arch 'amd64' as amd64 Signed-off-by: Kyle Aleshire --- lib/utils.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.bash b/lib/utils.bash index b92d6b3..c5ac69b 100755 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -42,7 +42,7 @@ detect_system() { detect_architecture() { case $(uname -m) in - x86_64) echo "amd64" ;; + amd64 | x86_64) echo "amd64" ;; ppc64le) echo "ppc64le" ;; aarch64 | aarch64_be | armv8b | armv8l | arm64) echo "arm64" ;; *) fail "Architecture not supported" ;;