From 60ab0b6a7c5fac17f003e1df01a0c45639682945 Mon Sep 17 00:00:00 2001 From: Matthias Loibl Date: Tue, 29 Sep 2020 12:17:08 +0200 Subject: [PATCH] Don't build darwin/386 anymore --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 71da381..f7f905f 100644 --- a/Makefile +++ b/Makefile @@ -52,4 +52,4 @@ release: @which gox > /dev/null; if [ $$? -ne 0 ]; then \ $(GO) get -u github.com/mitchellh/gox; \ fi - CGO_ENABLED=0 gox -verbose -ldflags '-w $(LDFLAGS)' -output="dist/$(EXECUTABLE)-${DRONE_TAG}-{{.OS}}-{{.Arch}}" + CGO_ENABLED=0 gox -verbose -ldflags '-w $(LDFLAGS)' -osarch '!darwin/386' -output="dist/$(EXECUTABLE)-${DRONE_TAG}-{{.OS}}-{{.Arch}}"