Skip to content

Commit

Permalink
Fix make-clean target
Browse files Browse the repository at this point in the history
  • Loading branch information
aledbf committed Jun 17, 2020
1 parent 8f389c5 commit 2d51fbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2d51fbf

Please sign in to comment.