django-fobi/scripts/clean_up.sh
Artur Barseghyan 248f0c67db prepare 0.10.5
2017-02-13 22:54:40 +01:00

8 lines
247 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/