mirror of https://github.com/tildeclub/ttrv.git
10 lines
364 B
Bash
Executable File
10 lines
364 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Removes any lingering build/release files from the project directory
|
|
|
|
find . -type f -name '*.pyc' -delete
|
|
find . -type f -name '*.pyo' -delete
|
|
find . -type d -name '__pycache__' -exec rm -rv {} +
|
|
find . -type d -name 'build' -exec rm -rv {} +
|
|
find . -type d -name 'dist' -exec rm -rv {} +
|
|
find . -type d -name '*.egg-info' -exec rm -rv {} +
|