mirror of
https://github.com/tildeclub/ttrv.git
synced 2026-06-19 11:39:23 +00:00
first commit
This commit is contained in:
9
scripts/pip_clean.sh
Executable file
9
scripts/pip_clean.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/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 {} +
|
||||
Reference in New Issue
Block a user