From a0282db2dde110c34dcdb2ebdf81f647b2addfa8 Mon Sep 17 00:00:00 2001 From: John Doe Date: Wed, 4 Mar 2026 21:59:51 -0500 Subject: [PATCH] fix: suppress output during Bun installation for cleaner logs --- install/localagi-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/localagi-install.sh b/install/localagi-install.sh index 383cedb17..6c533ef2a 100644 --- a/install/localagi-install.sh +++ b/install/localagi-install.sh @@ -24,7 +24,7 @@ setup_go msg_info "Installing Bun" curl -fsSL -o /tmp/bun-install.sh https://bun.sh/install chmod +x /tmp/bun-install.sh -bash /tmp/bun-install.sh +bash /tmp/bun-install.sh > /dev/null 2>&1 rm -f /tmp/bun-install.sh msg_ok "Installed Bun (official installer)" if [[ -x /root/.bun/bin/bun ]]; then