fix: makefile syntax
This commit is contained in:
parent
798813bafb
commit
f68de27444
1 changed files with 2 additions and 2 deletions
4
Makefile
4
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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue