From a6ab731b670d47ac3f4e69d2a773f4df535c98c3 Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Thu, 29 Aug 2024 15:33:05 +0200 Subject: [PATCH] fix(makefile): wrong target name for ko (#561) Signed-off-by: Dario Tranchitella --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ad8b15c..dfad845 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,7 @@ help: ## Display this help. ##@ Binary .PHONY: ko -ko: $(HELM) ## Download ko locally if necessary. +ko: $(KO) ## Download ko locally if necessary. $(KO): $(LOCALBIN) test -s $(LOCALBIN)/ko || GOBIN=$(LOCALBIN) go install github.com/google/ko@v0.14.1