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 14118fc26f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.