From 9c8f1d6dc524c3b51bc73bc8af61f838481e944d Mon Sep 17 00:00:00 2001 From: Andy Zhao Date: Wed, 4 Dec 2024 10:10:22 -0800 Subject: [PATCH] chore: Update Makefile to support arm64 for darwin and linux (syntax fix 2) --- 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 \