diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-03-13 22:51:25 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-03-13 22:51:25 +0100 |
commit | c8c6bdc00345e074f995099d63414dc9bd17a50b (patch) | |
tree | 7095302156330e205e8a091571bd00f4887eeaed | |
parent | 8d6dd16f63f5bdb51f10ae0f7ba33a9d8163b20b (diff) | |
download | jenkins.debian.net-c8c6bdc00345e074f995099d63414dc9bd17a50b.tar.xz |
fixup 8d6dd16: reproducible Debian: remove debug when notifying about diffoscope failures
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_build.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index c3baac83..9228b84e 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -104,13 +104,13 @@ cleanup_all() { if [ "$SAVE_ARTIFACTS" = "1" ] ; then save_artifacts elif ( [ "$NOTIFY" = "1" ] || [ "$NOTIFY" = "2" ] ) && [ "$SAVE_ARTIFACTS" = "0" ] ; then + irc_message debian-reproducible "$DEBIAN_URL/$SUITE/$ARCH/$SRCPACKAGE done: $STATUS debug: $NOTIFY" + elif [ ! -z "$NOTIFY" ] && [ "$SAVE_ARTIFACTS" = "0" ] ; then if [ "$NOTIFY" = "diffoscope" ] ; then - irc_message debian-reproducible "$DEBIAN_URL/$SUITE/$ARCH/$SRCPACKAGE $STATUS and $DIFFOSCOPE failed…" + irc_message debian-reproducible-changes "$DEBIAN_URL/$SUITE/$ARCH/$SRCPACKAGE $STATUS and $DIFFOSCOPE failed…" else - irc_message debian-reproducible "$DEBIAN_URL/$SUITE/$ARCH/$SRCPACKAGE done: $STATUS debug: $NOTIFY" + irc_message debian-reproducible-changes "$DEBIAN_URL/$SUITE/$ARCH/$SRCPACKAGE done: $STATUS debug: $NOTIFY" fi - elif [ ! -z "$NOTIFY" ] && [ "$SAVE_ARTIFACTS" = "0" ] ; then - irc_message debian-reproducible-changes "$DEBIAN_URL/$SUITE/$ARCH/$SRCPACKAGE done: $STATUS debug: $NOTIFY" fi [ ! -f $RBUILDLOG ] || gzip -9fvn $RBUILDLOG if [ "$MODE" = "master" ] ; then |