clean now also removed __pycache__ and .pyc and -pyo

This commit is contained in:
Jeppe Klitgaard 2015-04-11 20:00:16 +02:00
parent f3ee66b0b9
commit b2ccc754f4
1 changed files with 5 additions and 1 deletions

View File

@ -3,4 +3,8 @@
rm -v coverage.xml
rm -v MANIFEST
rm -v nosetests.xml
rm -rv build
rm -rv build
find . -type f -name '*.py[co]' -delete
find . -path '*/__pycache__/*' -delete
find . -type d -name "__pycache__" -delete