Skip to content

Commit eda5804

Browse files
committed
fix(devenv): missing cmctl in make target
Signed-off-by: Alessio Pragliola <seth.pro@gmail.com>
1 parent 3dd855d commit eda5804

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workspaces/controller/devenv/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ cleanup-crds:
2222

2323
CERT_MANAGER_VERSION := 1.17.1
2424

25-
.PHONY: cmctl check-cert-manager
26-
check-cert-manager:
25+
.PHONY: check-cert-manager
26+
check-cert-manager: cmctl
2727
@echo "Checking if cert-manager is installed and ready..."
2828
@$(LOCALBIN)/cmctl check api > /dev/null 2>&1 || (printf "cert-manager is not installed or is not ready yet, please install cert-manager first or wait for it to be ready.\nYou can install cert-manager by running the following command:\n\nkubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v$(CERT_MANAGER_VERSION)/cert-manager.yaml\n\n" && exit 1)
2929
@echo "cert-manager is installed and ready."

0 commit comments

Comments
 (0)