fix: correct syntax error in Bun installation command

This commit is contained in:
John Doe
2026-03-04 21:37:30 -05:00
parent 6a721f0b67
commit 2352877bae

View File

@@ -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