From 3ec7fb917e19c4987311ec1ae6baf37233bd95b4 Mon Sep 17 00:00:00 2001 From: John Doe Date: Wed, 4 Mar 2026 21:49:02 -0500 Subject: [PATCH] fix: update Bun installation command to ensure proper execution --- 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 80f0410af..e25581b0b 100644 --- a/install/localagi-install.sh +++ b/install/localagi-install.sh @@ -23,7 +23,8 @@ setup_go msg_info "Installing Bun" curl -fsSL -o /tmp/bun-install.sh https://bun.sh/install -bash /tmp/bun-install.sh --no-chmod +chmod +x /tmp/bun-install.sh +bash /tmp/bun-install.sh rm -f /tmp/bun-install.sh msg_ok "Installed Bun (official installer)" if [[ -x /root/.bun/bin/bun ]]; then