Skip to content

Commit

Permalink
makefile: add removal of .mypy_cache to make clean
Browse files Browse the repository at this point in the history
  • Loading branch information
redshiftzero committed Apr 27, 2019
1 parent 0f12e75 commit d52db7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mypy: ## Run static type checker

.PHONY: clean
clean: ## Clean the workspace of generated resources
@rm -rf build dist *.egg-info .coverage .eggs docs/_build .pytest_cache lib htmlcov .cache && \
@rm -rf .mypy_cache build dist *.egg-info .coverage .eggs docs/_build .pytest_cache lib htmlcov .cache && \
find . \( -name '*.py[co]' -o -name dropin.cache \) -delete && \
find . \( -name '*.bak' -o -name dropin.cache \) -delete && \
find . \( -name '*.tgz' -o -name dropin.cache \) -delete && \
Expand Down

0 comments on commit d52db7a

Please sign in to comment.