From 50b6a0b5a51728de009f8f593893d485addf8e5a Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 19 Dec 2024 09:12:06 -0300 Subject: [PATCH] fix: Remove unnecessary directory clearing in build_langflow_base target (#5356) fix: remove unnecessary directory clearing in build_langflow_base target --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f31fe3eeb..ea87e9c19 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ all: help ###################### # Some directories may be mount points as in devcontainer, so we need to clear their -# contents rather than remove the entire directory. But we must also be mindful that +# contents rather than remove the entire directory. But we must also be mindful that # we are not running in a devcontainer, so need to ensure the directories exist. # See https://code.visualstudio.com/remote/advancedcontainers/improve-performance CLEAR_DIRS = $(foreach dir,$1,$(shell mkdir -p $(dir) && find $(dir) -mindepth 1 -delete)) @@ -309,7 +309,6 @@ endif build_langflow_base: cd src/backend/base && uv build $(args) - $(call CLEAR_DIRS,src/backend/base/langflow/frontend) build_langflow_backup: uv lock && uv build