From 7fb0abae78ab5aa50346f022f529bd811cab5b0e Mon Sep 17 00:00:00 2001 From: Andy Zhao Date: Wed, 4 Dec 2024 11:16:51 -0800 Subject: [PATCH] chore: Update Makefile to support arm64 for darwin and linux (syntax fix 2) (#176) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2eb69b6..5671cd0 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ build: SUFFIX=""; \ GOARCHES_SUPPORTED="${GOARCHES}"; \ fi ; \ - for GOARCH in ${GOARCHES_SUPPORTED}; do \ + for GOARCH in $${GOARCHES_SUPPORTED}; do \ echo "Building $${GOOS}/$${GOARCH}" ; \ GOOS=$${GOOS} GOARCH=$${GOARCH} go build \ -a \