From 90c95355c9dc7fa3db70e3bff362ba1fc960b237 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 17 Aug 2025 16:21:27 +1200 Subject: [PATCH] Update source/agent-remote/agent-install.sh --- source/agent-remote/agent-install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/agent-remote/agent-install.sh b/source/agent-remote/agent-install.sh index d920ea6..b4d78b8 100755 --- a/source/agent-remote/agent-install.sh +++ b/source/agent-remote/agent-install.sh @@ -21,7 +21,9 @@ fi _check_required_env_vars "AGENT_PATH" function install_bb64() { - if ! curl -fsSL "https://gitea.jde.nz/public/bb64/releases/download/latest/install.sh" | \ + ARCH=$(uname -m) + + if ! curl -fsSL "https://getbin.xyz/bb64:latest-${ARCH}" | \ bash -s -- "$AGENT_PATH" "$(id -u "$USER"):$(id -g "$USER")"; then _die "Failed to install bb64. Curl returned non-zero exit code." fi