From 6fd0a81ecc7fbc49c8085a2245467e9a49804e95 Mon Sep 17 00:00:00 2001 From: Bryce Palmer Date: Fri, 26 May 2023 14:50:37 -0400 Subject: [PATCH] (bugfix): in Makefile set `BUILDDEPS = $(GORELEASER)` (#79) 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.