Make clean should remove .pyc files in subdirectories too (fix #164) (#208)

This commit is contained in:
Sargun Vohra 2016-06-25 10:42:39 -04:00 committed by GitHub
parent c5301cedb1
commit 32b28274dc

View file

@ -21,7 +21,7 @@ test:
python manage.py test --settings=config.local
clean:
rm -rf *.pyc
find . -type f -name '*.pyc' -delete
migrate:
python manage.py migrate --settings=config.local