aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-06-10 17:08:25 -0300
committerEuAndreh <eu@euandre.org>2019-06-10 17:08:25 -0300
commiteb4bf9136038896393e55d8824b4249cdabbbc9d (patch)
treeb3b745681bf04037cbf4f84b31fcf5ba454d24ce /scripts
parentChange order of stderr -> stdout redirection (diff)
downloadserver-eb4bf9136038896393e55d8824b4249cdabbbc9d.tar.gz
server-eb4bf9136038896393e55d8824b4249cdabbbc9d.tar.xz
Disable SC2016 warnings
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/mail.sh2
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
}