From 2352877bae873d6aad0a084c79cadff7b81e0c65 Mon Sep 17 00:00:00 2001 From: John Doe Date: Wed, 4 Mar 2026 21:37:30 -0500 Subject: [PATCH] fix: correct syntax error in Bun installation command --- 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 9816308f3..7809f8dd7 100644 --- a/install/localagi-install.sh +++ b/install/localagi-install.sh @@ -22,7 +22,7 @@ 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; then +curl -fsSL -o /tmp/bun-install.sh https://bun.sh/install && bash /tmp/bun-install.sh --no-chmod >/dev/null 2>&1 rm -f /tmp/bun-install.sh msg_ok "Installed Bun (official installer)" if [[ -x /root/.bun/bin/bun ]]; then