Skip to content

Commit

Permalink
Update postData.sh: SC2086 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored Dec 18, 2024
1 parent ff1a304 commit 72d5f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/postData.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 72d5f33

Please sign in to comment.