Skip to content

Commit 50b6a0b

Browse files
authored
fix: Remove unnecessary directory clearing in build_langflow_base target (#5356)
fix: remove unnecessary directory clearing in build_langflow_base target
1 parent d5498cf commit 50b6a0b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ all: help
2828
######################
2929

3030
# Some directories may be mount points as in devcontainer, so we need to clear their
31-
# contents rather than remove the entire directory. But we must also be mindful that
31+
# contents rather than remove the entire directory. But we must also be mindful that
3232
# we are not running in a devcontainer, so need to ensure the directories exist.
3333
# See https://code.visualstudio.com/remote/advancedcontainers/improve-performance
3434
CLEAR_DIRS = $(foreach dir,$1,$(shell mkdir -p $(dir) && find $(dir) -mindepth 1 -delete))
@@ -309,7 +309,6 @@ endif
309309

310310
build_langflow_base:
311311
cd src/backend/base && uv build $(args)
312-
$(call CLEAR_DIRS,src/backend/base/langflow/frontend)
313312

314313
build_langflow_backup:
315314
uv lock && uv build

0 commit comments

Comments
 (0)