From 2de1798fdd2313f5ae382a5f28884a2cc09a5490 Mon Sep 17 00:00:00 2001 From: Sung <8265228+sungwoncho@users.noreply.github.com> Date: Sat, 18 Mar 2023 16:57:40 +1100 Subject: [PATCH] Remove Darwin release (#644) --- install.sh | 1 - scripts/cli/build.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/install.sh b/install.sh index d2d1e486..6537232e 100755 --- a/install.sh +++ b/install.sh @@ -87,7 +87,6 @@ check_platform() { found=1 case "$platform" in darwin/amd64) found=0;; - darwin/arm64) found=0;; linux/amd64) found=0 ;; linux/arm64) found=0 ;; esac diff --git a/scripts/cli/build.sh b/scripts/cli/build.sh index 7955c6fe..17c21ee1 100755 --- a/scripts/cli/build.sh +++ b/scripts/cli/build.sh @@ -116,7 +116,6 @@ if [ -z "$GOOS" ] && [ -z "$GOARCH" ]; then build linux amd64 build linux arm64 build darwin amd64 - build darwin arm64 build windows amd64 else build "$GOOS" "$GOARCH" true