From 6572cbb61d53069298ee00fdd135aff5c56265af Mon Sep 17 00:00:00 2001 From: "B. Bergeron" Date: Wed, 13 Aug 2025 11:31:33 -0400 Subject: [PATCH] Inform user that installation might take a while --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index cbaec72f9..d59369cf7 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -63,7 +63,7 @@ current_hash=$( ) if [ ! -f "$packages_hash_file" ] || [ "$current_hash" != "$(cat $packages_hash_file)" ]; then - echo "[entrypoint] Installing new python dependencies..." + echo "[entrypoint] Installing new python dependencies, this might take a while..." reqs="-r requirements.txt" for req in custom_nodes/*/requirements.txt; do [ -f "$req" ] && reqs="$reqs -r $req"