From 1c9851e11539fd951cb8e0485c219eda3dacfe2d Mon Sep 17 00:00:00 2001 From: Sebastien Tardif Date: Sat, 30 May 2026 10:35:32 -0700 Subject: [PATCH] fix(install): show npm install progress without gum Show the same Installing OpenClaw package progress line in the no-gum npm install fallback before redirecting npm output to the temp log. Fixes #82305 Co-authored-by: Sebastien Tardif --- scripts/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install.sh b/scripts/install.sh index 6054b3498af5..f28b3b912d71 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -880,6 +880,7 @@ run_npm_global_install() { return $? fi + ui_info "Installing OpenClaw package" "${cmd[@]}" >"$log" 2>&1 }