From 11d4748bb662911ba4a67f09efba3f68d2e4c6a6 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 23 Aug 2025 18:06:50 +1200 Subject: [PATCH] Update source/agent-remote/agent-install.sh --- source/agent-remote/agent-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/agent-remote/agent-install.sh b/source/agent-remote/agent-install.sh index 03d502f..bf75c67 100755 --- a/source/agent-remote/agent-install.sh +++ b/source/agent-remote/agent-install.sh @@ -23,7 +23,7 @@ _check_required_env_vars "AGENT_PATH" function install_bb64() { BB64_path="${AGENT_PATH}/bb64" ARCH=$(uname -m) - if ! curl "http://getbin.xyz/bb64:latest-${ARCH}" > "${BB64_path}"; then + if ! curl -s "https://getbin.xyz/bb64:latest-${ARCH}" > "${BB64_path}"; then _die "Failed to install bb64. Curl returned non-zero exit code." fi chown "$(id -u "$USER"):$(id -g "$USER")" "${BB64_path}"