Clean up the clean tasks

This commit is contained in:
Andreas Zweili 2023-07-13 23:48:59 +02:00
parent 311f2313e4
commit 0b61c4a23f
1 changed files with 2 additions and 3 deletions

5
dev.sh
View File

@ -50,13 +50,12 @@ docker (){
clean () {
find . \( -name __pycache__ -o -name "*.pyc" \) -delete
rm -rf htmlcov/
rm -f src/*/migrations/0*.py
rm -f .second_run
rm -f src/*/migrations/0*.py .direnv/.second_run
}
cleanall () {
clean
rm -r .venv .direnv/
rm -rf .venv .direnv/
}
init () {