Skip to content

Commit

Permalink
Add support for darwin/arm64 (#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
nateinaction authored Feb 21, 2024
1 parent 8f1b277 commit 9f3d97e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,12 @@ VERSION_PACKAGE := $(REPOPATH)/pkg/version
ifeq ($(GOARCH), amd64)
SUPPORTED_PLATFORMS := linux-$(GOARCH) darwin-$(GOARCH) windows-$(GOARCH).exe
else
ifeq ($(GOARCH), arm64)
SUPPORTED_PLATFORMS := linux-$(GOARCH) darwin-$(GOARCH)
else
SUPPORTED_PLATFORMS := linux-$(GOARCH)
endif
endif

GO_LDFLAGS :="
GO_LDFLAGS += -X $(VERSION_PACKAGE).version=$(VERSION)
Expand Down

0 comments on commit 9f3d97e

Please sign in to comment.