From f68de27444785e3230edf8c59d73940068fde033 Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Wed, 5 Apr 2023 16:11:02 -0300 Subject: [PATCH] fix: makefile syntax --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index df4150968..328ac8580 100644 --- a/Makefile +++ b/Makefile @@ -43,10 +43,10 @@ dev: make install_frontend ifeq ($(build),1) @echo 'Running docker compose up with build' - docker compose up $(if $(debug),-f docker-compose.debug.yml) --build + docker compose $(if $(debug),-f docker-compose.debug.yml) up --build else @echo 'Running docker compose up without build' - docker compose up $(if $(debug),-f docker-compose.debug.yml) + docker compose $(if $(debug),-f docker-compose.debug.yml) up endif publish: