We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c2dc3 commit ed8672fCopy full SHA for ed8672f
Makefile
@@ -40,8 +40,8 @@ upgrade:
40
41
# Création des données initiales dans la BDD SQLite intégrée
42
createDB:
43
- find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
44
- find . -path "*/migrations/*.pyc" -delete
+ find . -path "*/migrations/*.py" -not -name "__init__.py" -exec rm --force "{}" +
+ find . -path "*/migrations/*.pyc" -exec rm --force "{}" +
45
make updatedb
46
make migrate
47
python3 manage.py loaddata initial_data
0 commit comments