Skip to content

Commit

Permalink
fix: Fix make clean (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunitsudev authored Jun 26, 2024
2 parents 2274716 + 59f2d15 commit f908547
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@ versenv:
githooks:
@diff -q "${REPO_ROOT}/.githooks/pre-push" "${PRE_PUSH}" || cp -ai "${REPO_ROOT}/.githooks/pre-push" "${PRE_PUSH}"

clean: ## Clean up cache, etc
clean: clean-go clean-golangci-lint ## Clean up cache

clean-go: ## Clean up cache
go clean -x -cache -testcache -modcache -fuzzcache

clean-golangci-lint: ## Clean up lint cache
golangci-lint cache clean

.PHONY: lint
Expand Down

0 comments on commit f908547

Please sign in to comment.