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