From 25afa370bbe868cb8e0ba2200fe9766d9988a37a Mon Sep 17 00:00:00 2001 From: Rishabh Singh Date: Tue, 26 Jul 2022 14:53:33 -0700 Subject: [PATCH] fix: added macOS ARM M1 architecture support --- install-binary.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-binary.sh b/install-binary.sh index 2215a33..d8851ed 100755 --- a/install-binary.sh +++ b/install-binary.sh @@ -42,7 +42,7 @@ initOS() { # verifySupported checks that the os/arch combination is supported for # binary builds. verifySupported() { - local supported="linux-amd64\nmacos-amd64\nwindows-amd64" + local supported="linux-amd64\nmacos-amd64\nmacos-arm64\nwindows-amd64" if ! echo "${supported}" | grep -q "${OS}-${ARCH}"; then echo "No prebuild binary for ${OS}-${ARCH}." exit 1