Skip to content

Commit

Permalink
(bugfix): in Makefile set BUILDDEPS = $(GORELEASER) (#79)
Browse files Browse the repository at this point in the history
fix a bug in the makefile where BUILDDEPS was still set to goreleaser

Signed-off-by: Bryce Palmer <bpalmer@redhat.com>
  • Loading branch information
everettraven committed May 26, 2023
1 parent abc5a78 commit 6fd0a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6fd0a81

Please sign in to comment.