File: clean_up.sh

package info (click to toggle)
python-transliterate 1.10.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 812 kB
  • sloc: python: 1,973; makefile: 224; sh: 36
file content (10 lines) | stat: -rwxr-xr-x 280 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
find . -name "*.pyc" -exec rm -rf {} \;
find . -name "__pycache__" -exec rm -rf {} \;
find . -name "*.orig" -exec rm -rf {} \;
find . -name "*.py,cover" -exec rm -rf {} \;
rm -rf build/
rm -rf dist/
rm -rf .cache/
rm -rf htmlcov/
rm src/transliterate.egg-info -rf
rm builddocs.zip