diff options
author | EuAndreh <eu@euandre.org> | 2020-08-09 13:05:36 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-09 13:05:36 -0300 |
commit | 8c6561357ef02ae563abd059734da79b5af0b590 (patch) | |
tree | 8ff44485665af2fc78af94deaaa18a7ad92fd26a | |
parent | Add AGPL LICENSE (diff) | |
download | server-8c6561357ef02ae563abd059734da79b5af0b590.tar.gz server-8c6561357ef02ae563abd059734da79b5af0b590.tar.xz |
mail.sh: Add 'successful' messaging on the mail subject
-rwxr-xr-x | scripts/ci/mail.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/mail.sh b/scripts/ci/mail.sh index 529cd4c..9caebd4 100755 --- a/scripts/ci/mail.sh +++ b/scripts/ci/mail.sh @@ -12,7 +12,7 @@ EXIT_CODE="${1:-}" } if [[ "${EXIT_CODE}" = 0 ]]; then - SUBJECT_SUFFIX='' + SUBJECT_SUFFIX=' (successful build)' else SUBJECT_SUFFIX=' (FAILED BUILD)' fi |