From 764d6c43f3f8dfed62f2040dbba1a32ec0c9a2ad Mon Sep 17 00:00:00 2001 From: Sasbom Date: Wed, 5 Nov 2025 11:16:59 +0100 Subject: [PATCH] allow for PATH style ';' delimited custom_node directories. --- folder_paths.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/folder_paths.py b/folder_paths.py index 8aa2b7be9..d98c8209d 100644 --- a/folder_paths.py +++ b/folder_paths.py @@ -117,8 +117,9 @@ def set_input_directory(input_dir: str) -> None: def set_custom_nodes_directory(custom_nodes_dir: str) -> None: #NOTE: this function doesn't need a "get_custom_nodes_directory", we have "get_folder_paths". + # PATH style ';' delimiters allow for more folders. global folder_names_and_paths - folder_names_and_paths["custom_nodes"] = ([custom_nodes_dir], set()) + folder_names_and_paths["custom_nodes"] = (custom_nodes_dir.split(";"), set()) def get_output_directory() -> str: global output_directory