From 7c3184239a7a7cfb5154379b03451d3c6ee0f7d7 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Mon, 4 Nov 2024 17:08:32 +0100 Subject: [PATCH] bootstrap-tools are required for kured bin kured linking needs the goreleaser command line, yet it does not ensure it is present. This fixes it by ensuring the bootstrap-tools are always fetched first and used for all the make targets requiring them. Signed-off-by: Jean-Philippe Evrard --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ddba7a6..39cd5d5 100644 --- a/Makefile +++ b/Makefile @@ -24,16 +24,16 @@ bootstrap-tools: $(HACKDIR) clean: rm -rf ./dist -kured: +kured: bootstrap-tools $(GORELEASER_CMD) build --clean --single-target --snapshot -kured-all: +kured-all: bootstrap-tools $(GORELEASER_CMD) build --clean --snapshot -kured-release-tag: +kured-release-tag: bootstrap-tools $(GORELEASER_CMD) release --clean -kured-release-snapshot: +kured-release-snapshot: bootstrap-tools $(GORELEASER_CMD) release --clean --snapshot image: kured