From a077b3abafbf8b54ff5a29333f1c7666afe0f510 Mon Sep 17 00:00:00 2001 From: AbdBarho Date: Sat, 22 Jul 2023 08:21:22 +0200 Subject: [PATCH] remove custom nodes auto install Could be added back later --- services/comfy/entrypoint.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/services/comfy/entrypoint.sh b/services/comfy/entrypoint.sh index d4f91e3..b4299a7 100755 --- a/services/comfy/entrypoint.sh +++ b/services/comfy/entrypoint.sh @@ -28,10 +28,4 @@ if [ -f "/data/config/comfy/startup.sh" ]; then popd fi -shopt -s nullglob -list=(${ROOT}/custom_nodes/*/requirements.txt) -for req in "${list[@]}"; do - pip install -r "$req" -done - exec "$@"