From 7515eb21570e6b733f344c22edba7d4c8fb6886f Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Sat, 17 Aug 2024 19:12:46 +0200 Subject: [PATCH] fix(makefile): no need specifying ginkgo version Signed-off-by: Dario Tranchitella --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 45346b28d..bdcdac739 100644 --- a/Makefile +++ b/Makefile @@ -199,9 +199,8 @@ controller-gen: ## Download controller-gen locally if necessary. $(call go-install-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@$(CONTROLLER_GEN_VERSION)) GINKGO := $(shell pwd)/bin/ginkgo -GINGKO_VERSION := v2.17.2 ginkgo: ## Download ginkgo locally if necessary. - $(call go-install-tool,$(GINKGO),github.com/onsi/ginkgo/v2/ginkgo@$(GINGKO_VERSION)) + $(call go-install-tool,$(GINKGO),github.com/onsi/ginkgo/v2/ginkgo) CT := $(shell pwd)/bin/ct CT_VERSION := v3.10.1