From 979b497bd4fcf04208a599fce66b25f87e2f90fb Mon Sep 17 00:00:00 2001 From: Cole Lawrence Date: Sat, 17 Jul 2021 02:37:46 -0400 Subject: [PATCH] Add darwin-arm64 to supported archs (#676) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index e0e5a1e9..8bfec8d6 100755 --- a/install.sh +++ b/install.sh @@ -45,7 +45,7 @@ runAsRoot() { # verifySupported checks that the os/arch combination is supported for # binary builds. verifySupported() { - local supported="darwin-386\ndarwin-amd64\nlinux-386\nlinux-amd64\nlinux-arm\nlinux-arm64\nwindows-386\nwindows-amd64" + local supported="darwin-386\ndarwin-amd64\ndarwin-arm64\nlinux-386\nlinux-amd64\nlinux-arm\nlinux-arm64\nwindows-386\nwindows-amd64" if ! echo "${supported}" | grep -q "${OS}-${ARCH}"; then echo "No prebuilt binary for ${OS}-${ARCH}." echo "To build from source, go to $REPO_URL"