Skip to content

Commit

Permalink
build: dropped darwin/386 builds due to deprecation in go 1.15
Browse files Browse the repository at this point in the history
see upstream mitchellh/gox#146
  • Loading branch information
patrickjahns committed Dec 26, 2020
1 parent f7e2165 commit 5386880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5386880

Please sign in to comment.