Remove one object per line

Makes it easier to change
This commit is contained in:
Andreas Zweili 2023-07-18 20:44:15 +02:00
parent 04e1831d02
commit ceda8d419b
1 changed files with 4 additions and 2 deletions

6
dev.sh
View File

@ -50,8 +50,10 @@ docker (){
clean () { clean () {
find . \( -name __pycache__ -o -name "*.pyc" \) -delete find . \( -name __pycache__ -o -name "*.pyc" \) -delete
rm -rf htmlcov/ .direnv/postgres/ rm -rf htmlcov/
rm -f src/*/migrations/0*.py .direnv/first_run rm -f .direnv/first_run
rm -f src/*/migrations/0*.py
rm -rf .direnv/postgres/
} }
cleanall () { cleanall () {