feat: fix formatting in makefile

This commit is contained in:
Gabriel Almeida
2023-04-04 21:46:28 -03:00
parent fe95790331
commit 09412b337e

View File

@ -40,16 +40,14 @@ build:
rm -rf src/backend/langflow/frontend
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
else
@echo 'Running docker compose up without build'
docker compose up $(if $(debug),-f docker-compose.debug.yml)
endif
make install_frontend
ifeq ($(build),1)
@echo 'Running docker compose up with build'
docker compose up $(if $(debug),-f docker-compose.debug.yml) --build
else
@echo 'Running docker compose up without build'
docker compose up $(if $(debug),-f docker-compose.debug.yml)
endif
publish:
make build