From 5c545a80794e4f2b08ff16cbe37bf0618b8d57c6 Mon Sep 17 00:00:00 2001 From: Nick Prendergast Date: Fri, 9 Feb 2024 22:12:08 -0600 Subject: [PATCH] feat: Allow downloading of ARM binaries on compatable systems. --- lib/utils.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/utils.bash b/lib/utils.bash index 031a55a..47488e1 100755 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -40,6 +40,9 @@ get_arch() { if [[ "$machine" =~ "x86_64" ]]; then echo "amd64" return + elif [[ "$machine" =~ arm.* ]]; then + echo "$machine" + return fi fail "Unknown arch"