Merge pull request #5088 from szombi/clean-fix

Remove .cache directory with make clean.
This commit is contained in:
Kubernetes Prow Robot 2020-02-16 10:13:28 -08:00 committed by GitHub
commit d590f8dce1

View file

@ -154,7 +154,7 @@ endif
.PHONY: clean
clean: ## Remove .gocache directory.
rm -rf bin/ .gocache/
rm -rf bin/ .gocache/ .cache/
.PHONY: static-check
static-check: ## Run verification script for boilerplate, codegen, gofmt, golint and lualint.