diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-11-17 19:20:39 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-11-18 00:38:50 +0100 |
commit | c72b624c167a27d826f2cf7d1a1ff37b0d0558a9 (patch) | |
tree | 6c22488ade44fd6bdc7c2ee907d6877fb952a023 /bin | |
parent | 7775c015af1e2ae611244b0263d77b070c8d2da3 (diff) | |
download | jenkins.debian.net-c72b624c167a27d826f2cf7d1a1ff37b0d0558a9.tar.xz |
reproducible: build: \n here is meant as a newline, so echo -e
Diffstat (limited to 'bin')
-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 c6ae6c0a..a3760352 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -103,7 +103,7 @@ update_db_and_html() { if [ "${OLD_STATUS}" = "reproducible" ] && [ "$STATUS" != "depwait" ] && \ ( [ "$STATUS" = "unreproducible" ] || [ "$STATUS" = "FTBFS" ] ) ; then MESSAGE="${REPRODUCIBLE_URL}/${SUITE}/${ARCH}/${SRCPACKAGE} : reproducible ➤ ${STATUS}" - echo "\n$MESSAGE" | tee -a ${RBUILDLOG} + echo -e "\n$MESSAGE" | tee -a ${RBUILDLOG} irc_message "$MESSAGE" # disable ("regular") irc notification unless it's due to diffoscope problems if [ ! -z "$NOTIFY" ] && [ "$NOTIFY" != "diffoscope" ] ; then |