Skip to content

Commit 97f7749

Browse files
authored
fix: added macOS ARM M1 architecture support (#294)
1 parent b8cb806 commit 97f7749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install-binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ initOS() {
5555
# verifySupported checks that the os/arch combination is supported for
5656
# binary builds.
5757
verifySupported() {
58-
supported="linux-amd64\nfreebsd-amd64\nmacos-amd64\nwindows-amd64"
58+
supported="linux-amd64\nfreebsd-amd64\nmacos-amd64\nmacos-arm64\nwindows-amd64"
5959
if ! echo "${supported}" | grep -q "${OS}-${ARCH}"; then
6060
echo "No prebuild binary for ${OS}-${ARCH}."
6161
exit 1

0 commit comments

Comments
 (0)