django-fobi/scripts/clean_up.sh
2017-03-20 23:13:08 +01:00

10 lines
277 B
Bash
Executable file

find . -name "*.pyc" -exec rm -rf {} \;
find . -name "*.py,cover" -exec rm -rf {} \;
find . -name "*.orig" -exec rm -rf {} \;
find . -name "__pycache__" -exec rm -rf {} \;
rm -rf build/
rm -rf dist/
rm -rf src/django_fobi.egg-info/
rm -rf .cache/
rm -rf .idea/
rm -rf htmlcov/