diff options
author | EuAndreh <eu@euandre.org> | 2019-06-10 17:08:25 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-10 17:08:25 -0300 |
commit | eb4bf9136038896393e55d8824b4249cdabbbc9d (patch) | |
tree | b3b745681bf04037cbf4f84b31fcf5ba454d24ce /scripts | |
parent | Change order of stderr -> stdout redirection (diff) | |
download | server-eb4bf9136038896393e55d8824b4249cdabbbc9d.tar.gz server-eb4bf9136038896393e55d8824b4249cdabbbc9d.tar.xz |
Disable SC2016 warnings
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ci/mail.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/ci/mail.sh b/scripts/ci/mail.sh index 8585cf1..61f4186 100755 --- a/scripts/ci/mail.sh +++ b/scripts/ci/mail.sh @@ -7,11 +7,13 @@ VPS_COMMIT_SHA="${1:-}" EXIT_CODE="${2:-}" [[ -z "${VPS_COMMIT_SHA}" ]] && { + # shellcheck disable=SC2016 echo 'Error: missing $VPS_COMMIT_SHA positional argument.' exit 2 } [[ -z "${EXIT_CODE}" ]] && { + # shellcheck disable=SC2016 echo 'Error: missing $EXIT positional argument.' exit 2 } |