From d3f4ef68ddb73d6d794242ba23a755ea9387cf2e Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 23 Aug 2025 18:01:51 +1200 Subject: [PATCH] Update source/agent-remote/agent-install.sh --- source/agent-remote/agent-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/agent-remote/agent-install.sh b/source/agent-remote/agent-install.sh index e4e4b24..03d502f 100755 --- a/source/agent-remote/agent-install.sh +++ b/source/agent-remote/agent-install.sh @@ -30,11 +30,12 @@ function install_bb64() { chmod +x "${BB64_path}" # test if bb64 is installed - if ! VER=$("${BB64_path}" version); then + if VER=$("${BB64_path}" version); then + echo "bb64 v$VER installed." + else _die "bb64 did not install correctly." fi - echo "bb64 v$VER installed." return 0; }