From 5386880caf13d68f3be55c9eae7a8dfed81e1915 Mon Sep 17 00:00:00 2001 From: Patrick Jahns Date: Sat, 26 Dec 2020 16:57:47 +0100 Subject: [PATCH] build: dropped darwin/386 builds due to deprecation in go 1.15 see upstream https://github.com/mitchellh/gox/issues/146 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1848e26..ac9d003 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,7 @@ release-build: @which gox > /dev/null; if [ $$? -ne 0 ]; then \ GO111MODULE=off $(GO) get -u github.com/mitchellh/gox; \ fi - gox -arch="386 amd64 arm" -verbose -ldflags '-w $(LDFLAGS)' -output="$(DIST)/$(EXECUTABLE)-{{.OS}}-{{.Arch}}" ./cmd/$(NAME) + gox -arch="386 amd64 arm" -osarch '!darwin/386' -verbose -ldflags '-w $(LDFLAGS)' -output="$(DIST)/$(EXECUTABLE)-{{.OS}}-{{.Arch}}" ./cmd/$(NAME) .PHONY: release-checksums release-checksums: