Fix make-clean target
This commit is contained in:
parent
8f389c5ec5
commit
2d51fbf6fe
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -83,8 +83,8 @@ image: clean-image ## Build image for a particular arch.
|
||||||
|
|
||||||
.PHONY: clean-image
|
.PHONY: clean-image
|
||||||
clean-image: ## Removes local image
|
clean-image: ## Removes local image
|
||||||
echo "removing old image $(BASE_IMAGE):$(TAG)"
|
echo "removing old image $(REGISTRY)/nginx-ingress-controller:$(TAG)"
|
||||||
@docker rmi -f $(BASE_IMAGE):$(TAG) || true
|
@docker rmi -f $(REGISTRY)/nginx-ingress-controller:$(TAG) || true
|
||||||
|
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
build: check-go-version ## Build ingress controller, debug tool and pre-stop hook.
|
build: check-go-version ## Build ingress controller, debug tool and pre-stop hook.
|
||||||
|
|
Loading…
Reference in a new issue