Add remove .cache directory to main Makefile's clean target

This commit is contained in:
Sandor Szombat 2020-02-16 15:27:57 +01:00
parent 860812a222
commit 164b051fb0

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.