Skip to content

Commit

Permalink
Improve Makefile to clean __pycache__ directory recursively (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman authored Sep 17, 2020
1 parent ae6bc9a commit f0bd178
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ lint:
clean:
find . -name "*.pyc" -exec rm -v {} \;
find . -name "*~" -exec rm -v {} \;
rm -rvf build dist MANIFEST *.egg-info __pycache__ .coverage .cache htmlcov coverage.xml
find . -type d -name "__pycache__" -exec rm -rv {} +
rm -rvf build dist MANIFEST *.egg-info .coverage .cache htmlcov coverage.xml
rm -rvf $(TESTDIR)
rm -rvf baseline
rm -rvf result_images

0 comments on commit f0bd178

Please sign in to comment.