From fcbd31762b9a98d507bc78c8281f04f447c23fad Mon Sep 17 00:00:00 2001 From: Sandy Forrester Date: Mon, 9 Mar 2026 12:29:44 +0000 Subject: [PATCH] NRL-1922 Fix conditional syntax --- scripts/check-deploy-environment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check-deploy-environment.sh b/scripts/check-deploy-environment.sh index ec5b9b050..d28a8d810 100755 --- a/scripts/check-deploy-environment.sh +++ b/scripts/check-deploy-environment.sh @@ -35,7 +35,7 @@ for dep in ${DEPLOY_DEPENDENCIES}; do dep_path="$(which ${dep} 2> /dev/null)" set -e - if [[ -n "${dep_path}" -a -x "${dep_path}" ]] + if [[ -n "${dep_path}" && -x "${dep_path}" ]] then success "${dep} found at ${dep_path}" else