From 72d5f33815fbd3ba8ba46a3bf005dc83f4855361 Mon Sep 17 00:00:00 2001 From: Eric Claeys <83164203+EricClaeys@users.noreply.github.com> Date: Wed, 18 Dec 2024 05:57:04 -0600 Subject: [PATCH] Update postData.sh: SC2086 fix --- scripts/postData.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/postData.sh b/scripts/postData.sh index a6274ae6e..62ae3a110 100755 --- a/scripts/postData.sh +++ b/scripts/postData.sh @@ -83,7 +83,7 @@ while [[ $# -gt 0 ]]; do esac shift done -[[ ${RET} -ne 0 ]] && usage_and_exit ${RET} +[[ ${RET} -ne 0 ]] && usage_and_exit "${RET}" [[ ${HELP} == "true" ]] && usage_and_exit 0