From eebca384642c0975ea3fb31065d2d42fdc76688f Mon Sep 17 00:00:00 2001 From: rithviknishad Date: Fri, 2 Feb 2024 12:10:48 +0530 Subject: [PATCH] fix checkmigrations command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3a17bfd..6d5a347 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ makemigrations: up docker exec django bash -c "python manage.py makemigrations" checkmigration: - docker compose exec django bash -c "python manage.py makemigrations --check --dry-run" + docker exec django bash -c "python manage.py makemigrations --check --dry-run" test: up docker exec django bash -c "python manage.py test --keepdb --parallel=$(nproc)"