From: Thierry Parmentelat Date: Sat, 13 Jul 2013 07:41:06 +0000 (+0200) Subject: mail subject now PASS for tests, or PKGOK if no test has taken place X-Git-Tag: 5.2.7~7 X-Git-Url: http://git.onelab.eu/?p=build.git;a=commitdiff_plain;h=1d6463ce5573f5e9d5b2b78bfeffadd99cdc405b mail subject now PASS for tests, or PKGOK if no test has taken place --- diff --git a/vbuild-nightly.sh b/vbuild-nightly.sh index 483c5f4d..245dd6f6 100755 --- a/vbuild-nightly.sh +++ b/vbuild-nightly.sh @@ -165,6 +165,7 @@ function success () { webpublish_cp_local_to_remote $LOG $WEBLOG summary $LOG | webpublish_append_stdin_to_file $WEBLOG if [ -n "$DO_TEST" ] ; then + short_message="PASS" ( \ echo "Successfully built and tested" ; \ echo "see build results at $WEBBASE_URL" ; \ @@ -173,6 +174,7 @@ function success () { ) | webpublish_cp_stdin_to_file $WEBBASE.pass webpublish rm -f $WEBBASE.pkg-ok $WEBBASE.ko else + short_message="PKGOK" ( \ echo "Successful package-only build, no test requested" ; \ echo "see build results at $WEBBASE_URL" ; \ @@ -182,7 +184,7 @@ function success () { fi if [ -n "$MAILTO" ] ; then ( \ - echo "Subject: PASS ${BASE} ${MAIL_SUBJECT}" ; \ + echo "Subject: $short_message ${BASE} ${MAIL_SUBJECT}" ; \ echo "To: $MAILTO" ; \ echo "$PLDISTRO ($BASE) build for $FCDISTRO completed on $(date)" ; \ echo "see build results at $WEBBASE_URL" ; \