From 86a9d2e9f3e8397d66b0c72b4d162566fa4d12f0 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 18 Feb 2021 21:35:45 +0100 Subject: [PATCH] Explicitly set darwin-10.15 when building binaries --- magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefile.go b/magefile.go index 1aac4d31f0b..a10d9064b46 100644 --- a/magefile.go +++ b/magefile.go @@ -533,7 +533,7 @@ func (Release) Linux() error { // Builds binaries for darwin func (Release) Darwin() error { - return runXgo("darwin/*") + return runXgo("darwin-10.15/*") } // Compresses the built binaries in dist/binaries/ to reduce their filesize