From e04e03980f29994c3b4e0ebc6d514b76e7ac9c17 Mon Sep 17 00:00:00 2001 From: Bryce Palmer Date: Fri, 26 May 2023 13:51:40 -0400 Subject: [PATCH] fix a bug in the makefile where BUILDDEPS was still set to goreleaser Signed-off-by: Bryce Palmer --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bacab259..822de9fe 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ BINARIES=manager LINUX_BINARIES=$(join $(addprefix linux/,$(BINARIES)), ) BUILDCMD = sh -c 'mkdir -p $(BUILDBIN) && $(GORELEASER) build $(GORELEASER_ARGS) --id $(notdir $@) --single-target -o $(BUILDBIN)/$(notdir $@)' -BUILDDEPS = goreleaser +BUILDDEPS = $(GORELEASER) .PHONY: build build: $(BINARIES) ## Build all project binaries for the local OS and architecture.