From f83e91efa6e17353622c6390d4c813a9d077f882 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 24 Apr 2023 13:16:44 +0200 Subject: [PATCH] Fix the clean command --- dev.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev.sh b/dev.sh index 14686d8..b7caf04 100755 --- a/dev.sh +++ b/dev.sh @@ -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 () {