Fix the clean command

This commit is contained in:
Andreas Zweili 2023-04-24 13:16:44 +02:00
parent ccfc1ea66c
commit f83e91efa6
1 changed files with 2 additions and 2 deletions

4
dev.sh
View File

@ -50,8 +50,8 @@ clean () {
docker-compose -f docker-compose-development.yml down -v
find . \( -name __pycache__ -o -name "*.pyc" \) -delete
rm -rf htmlcov/
rm -f */migrations/0*.py
rm .second_run
rm -f src/*/migrations/0*.py
rm -f .second_run
}
cleanall () {