Update source/agent-remote/agent-install.sh
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 36s
Build-Test-Publish / build (linux/arm64) (push) Successful in 59s

This commit is contained in:
Your Name
2025-08-23 18:01:51 +12:00
parent 72eb921358
commit d3f4ef68dd

View File

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