From 2d51fbf6fe573fa76c3f80f4573f3c6fdce3b877 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Wed, 17 Jun 2020 11:24:28 -0400 Subject: [PATCH] Fix make-clean target --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5a29867b61..8480b708bb 100644 --- a/Makefile +++ b/Makefile @@ -83,8 +83,8 @@ image: clean-image ## Build image for a particular arch. .PHONY: clean-image clean-image: ## Removes local image - echo "removing old image $(BASE_IMAGE):$(TAG)" - @docker rmi -f $(BASE_IMAGE):$(TAG) || true + echo "removing old image $(REGISTRY)/nginx-ingress-controller:$(TAG)" + @docker rmi -f $(REGISTRY)/nginx-ingress-controller:$(TAG) || true .PHONY: build build: check-go-version ## Build ingress controller, debug tool and pre-stop hook.