Skip to content

Commit 707e286

Browse files
NRL-1922 Fix conditional syntax (#1167)
1 parent 940a090 commit 707e286

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/check-deploy-environment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ for dep in ${DEPLOY_DEPENDENCIES}; do
3535
dep_path="$(which ${dep} 2> /dev/null)"
3636
set -e
3737

38-
if [[ -n "${dep_path}" -a -x "${dep_path}" ]]
38+
if [[ -n "${dep_path}" && -x "${dep_path}" ]]
3939
then
4040
success "${dep} found at ${dep_path}"
4141
else

0 commit comments

Comments
 (0)