From 09412b337ef5f58cf6ff62650b79196351a0bc0f Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Tue, 4 Apr 2023 21:46:28 -0300 Subject: [PATCH] feat: fix formatting in makefile --- Makefile | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 37317c91d..7ab775a98 100644 --- a/Makefile +++ b/Makefile @@ -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