diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-06-02 12:51:12 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-02 12:52:13 +0200 |
commit | dd9ea262ca3c6043f7f86302132ac92adee77aec (patch) | |
tree | c61e107aa46521054cf9c1962394530cd81a4453 | |
parent | fa58ea7fced13eb30219b45219e92b408a6b82a9 (diff) | |
download | jenkins.debian.net-dd9ea262ca3c6043f7f86302132ac92adee77aec.tar.xz |
reproducible: build: mail server does not like unicode, do s#→#-># on the subject line of notification emails
-rwxr-xr-x | bin/reproducible_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 88064b62..ed714b01 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -123,7 +123,7 @@ update_db_and_html() { # notification for changing status if [ "$OLD_STATUS" != "$STATUS" ] && [ "$NOTIFY_MAINTAINER" -eq 1 ]; then echo "More information on <URL:$REPRODUCIBLE_URL/$SUITE/$ARCH/$SRCHPACKAGE>, feel free to reply to this email to get more help." | \ - mail -s "Reproducibly of package $SRCPACKAGE changed: $OLD_STATUS → $STATUS" \ + mail -s "Reproducibly of package $SRCPACKAGE changed: $OLD_STATUS -> $STATUS" \ -a "From: reproducible-builds@lists.alioth.debian.org" "$SRCPACKAGE@packages.debian.org" fi sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO results (package_id, version, status, build_date, build_duration) VALUES ('${SRCPKGID}', '$VERSION', '$STATUS', '$DATE', '$DURATION')" |