From bd5fe17228e795494fd1fe13140d255b4f7d92e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Sun, 7 Dec 2025 16:09:14 +0100 Subject: [PATCH] ComfyUI: Fix update script (#9740) * Update error messages for ComfyUI installation check * Update comfyui.json * Change updateable status to true in comfyui.json * Update comfyui.json --- ct/comfyui.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/comfyui.sh b/ct/comfyui.sh index 45f1b9288a..5a293a4d2f 100644 --- a/ct/comfyui.sh +++ b/ct/comfyui.sh @@ -24,11 +24,11 @@ function update_script() { check_container_storage check_container_resources - if [[ ! -f /opt/${APP} ]]; then + if [[ ! -d /opt/ComfyUI ]]; then msg_error "No ${APP} Installation Found!" exit fi - msg_error "To update use the ${APP} Manager." + msg_error "To update use the ComfyUI Manager." exit }