From eec466dbb0aa3a5420cea9b1d24147ce73eb2c48 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Wed, 11 Oct 2023 10:44:35 +0200 Subject: [PATCH] Makefile: fix bump-bugfix target It's missing the `bump` subcommand... Signed-off-by: Vincent Demeester --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7214444ace..390b0a1436 100644 --- a/Makefile +++ b/Makefile @@ -100,7 +100,7 @@ components/bump: $(OPERATORTOOL) .PHONY: components/bump-bugfix components/bump-bugfix: $(OPERATORTOOL) - @go run ./cmd/tool --bugfix components.yaml + @go run ./cmd/tool bump --bugfix components.yaml .PHONY: get-releases get-releases: |