From 03cc5e8fa6aa8bd03c8dceddb33b4122441d0c8d Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Tue, 9 May 2023 14:30:04 -0700 Subject: [PATCH] Remove darwin binaries from build targets --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b2c74a1..4815a9b 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ APP_NAME = resticscheduler VERSION ?= $(shell git describe --tags --dirty) GOFILES = *.go # Multi-arch targets are generated from this -TARGET_ALIAS = $(APP_NAME)-linux-amd64 $(APP_NAME)-linux-arm $(APP_NAME)-linux-arm64 $(APP_NAME)-darwin-amd64 $(APP_NAME)-darwin-arm64 +TARGET_ALIAS = $(APP_NAME)-linux-amd64 $(APP_NAME)-linux-arm $(APP_NAME)-linux-arm64 TARGETS = $(addprefix dist/,$(TARGET_ALIAS)) .QUOTE = " CURRENT_GOARCH = $(shell go env | awk -F "=" '/GOARCH/ { gsub(/$(.QUOTE)/,"", $$2); print $$2}')