fix: makefile syntax

This commit is contained in:
Gabriel Almeida 2023-04-05 16:11:02 -03:00
commit f68de27444

View file

@ -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: