From 664520e027294d90d7643de49ea7a040821f7a61 Mon Sep 17 00:00:00 2001 From: Sung <8265228+sungwoncho@users.noreply.github.com> Date: Sat, 18 Mar 2023 16:52:34 +1100 Subject: [PATCH] Allow to download darwin/arm64 using the installation script (#642) --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 6537232e..d2d1e486 100755 --- a/install.sh +++ b/install.sh @@ -87,6 +87,7 @@ check_platform() { found=1 case "$platform" in darwin/amd64) found=0;; + darwin/arm64) found=0;; linux/amd64) found=0 ;; linux/arm64) found=0 ;; esac