mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 06:13:10 +00:00
8 lines
247 B
Bash
Executable file
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/
|