From 21f82e39bbc077834004cce78959cf8cabe3a237 Mon Sep 17 00:00:00 2001 From: John Doe Date: Wed, 4 Mar 2026 21:41:15 -0500 Subject: [PATCH] fix: separate Bun installation command for better error handling --- install/localagi-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/localagi-install.sh b/install/localagi-install.sh index 7809f8dd7..80f0410af 100644 --- a/install/localagi-install.sh +++ b/install/localagi-install.sh @@ -22,7 +22,8 @@ NODE_VERSION="24" setup_nodejs setup_go msg_info "Installing Bun" -curl -fsSL -o /tmp/bun-install.sh https://bun.sh/install && bash /tmp/bun-install.sh --no-chmod >/dev/null 2>&1 +curl -fsSL -o /tmp/bun-install.sh https://bun.sh/install +bash /tmp/bun-install.sh --no-chmod rm -f /tmp/bun-install.sh msg_ok "Installed Bun (official installer)" if [[ -x /root/.bun/bin/bun ]]; then