From a3fa445a9c76631c4cd16f93e1c1c68a954adef7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= <batolettre@gmail.com> Date: Sun, 20 Nov 2022 16:26:43 +0100 Subject: [PATCH] release: don't build for darwin/386 as support has been removed in golang --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 729192e7..14cf444d 100644 --- a/Makefile +++ b/Makefile @@ -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 -- GitLab