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 436e3c87de
commit bcdf13985d

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.