From 8a1a4f8b9bb031964bf0582c582309be2344b0cf Mon Sep 17 00:00:00 2001 From: John Doe Date: Thu, 5 Mar 2026 15:28:54 -0500 Subject: [PATCH] fix: enhance Bun installation process with informational messages in localagi-install.sh --- install/localagi-install.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/install/localagi-install.sh b/install/localagi-install.sh index 73a769129..9c3abd64a 100644 --- a/install/localagi-install.sh +++ b/install/localagi-install.sh @@ -19,11 +19,12 @@ $STD apt install -y build-essential NODE_VERSION="24" setup_nodejs setup_go -$STD curl -fsSL -o /tmp/bun-install.sh https://bun.sh/install -$STD chmod +x /tmp/bun-install.sh -$STD bash /tmp/bun-install.sh -rm -f /tmp/bun-install.sh -[[ -x /root/.bun/bin/bun ]] && ln -sf /root/.bun/bin/bun /usr/local/bin/bun +msg_info "Installing Bun" +export BUN_INSTALL="/root/.bun" +curl -fsSL https://bun.sh/install | $STD bash +ln -sf /root/.bun/bin/bun /usr/local/bin/bun +ln -sf /root/.bun/bin/bunx /usr/local/bin/bunx +msg_ok "Installed Bun" fetch_and_deploy_gh_release "localagi" "mudler/LocalAGI" "tarball" "latest" "/opt/localagi"