diff options
author | Michael Muré <batolettre@gmail.com> | 2022-11-20 16:26:43 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-11-20 16:26:43 +0100 |
commit | a3fa445a9c76631c4cd16f93e1c1c68a954adef7 (patch) | |
tree | 55c5c205c5cd9a89c5f0bf604736429fee6c278c | |
parent | e814bcf10efaa4262391d61e38cf809633ebf08e (diff) | |
download | git-bug-a3fa445a9c76631c4cd16f93e1c1c68a954adef7.tar.gz |
release: don't build for darwin/386 as support has been removed in golangv0.8.0
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ install: .PHONY: releases releases: go generate - go run github.com/mitchellh/gox@v1.0.1 -ldflags "$(LDFLAGS)" -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}" + go run github.com/mitchellh/gox@v1.0.1 -ldflags "$(LDFLAGS)" -osarch '!darwin/386' -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}" secure: secure-practices secure-vulnerabilities |