Inform user that installation might take a while

This commit is contained in:
B. Bergeron 2025-08-13 11:31:33 -04:00
parent f2ea706b34
commit 80519fd53b
No known key found for this signature in database
GPG Key ID: 20A0A88F22238925

View File

@ -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"