From 92b19175a06bcd588fee5c7954c2cfafdb60ec41 Mon Sep 17 00:00:00 2001 From: dstadulis <15150758+dstadulis@users.noreply.github.com> Date: Thu, 28 Sep 2023 19:09:57 +0000 Subject: [PATCH] build: add darwin-arm64 (Apple Silicon) as a release target add darwin-arm64 (Apple Silicon) as a release target --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index 510db8c..0c83b6d 100755 --- a/release.sh +++ b/release.sh @@ -73,7 +73,7 @@ cd $MAINDIR # If LOOPBUILDSYS is set the default list is ignored. Useful to release # for a subset of systems/architectures. -SYS=${LOOPBUILDSYS:-"windows-amd64 linux-386 linux-amd64 linux-armv6 linux-armv7 linux-arm64 darwin-amd64 freebsd-amd64 freebsd-arm"} +SYS=${LOOPBUILDSYS:-"windows-amd64 linux-386 linux-amd64 linux-armv6 linux-armv7 linux-arm64 darwin-arm64 darwin-amd64 freebsd-amd64 freebsd-arm"} # Use the first element of $GOPATH in the case where GOPATH is a list # (something that is totally allowed).