diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-03-21 19:39:51 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-03-21 19:39:51 +0100 |
commit | 075c2f2d73ab25d3aa917deec0b1e3bc505671a3 (patch) | |
tree | 7695ce8e19524eceba83d17f8c036f2aab60b5bf | |
parent | 8d3e59398b12285af15a7b4b0c00df5ec2c0c077 (diff) | |
download | jenkins.debian.net-075c2f2d73ab25d3aa917deec0b1e3bc505671a3.tar.xz |
reproducible Debian: refactor
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_build.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index b99c1c52..c3b05a18 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -449,8 +449,9 @@ call_diffoscope_on_changes_files() { if (( $RESULT > 128 )) && (( $RESULT <= 128+31 )); then RESULT="$RESULT (SIG$(kill -l $(($RESULT - 128))))" fi - handle_ftbr "Something weird happened when running $DIFFOSCOPE (which exited with $RESULT) and I don't know how to handle it" - irc_message debian-reproducible-changes "Something weird happened when running $DIFFOSCOPE (which exited with $RESULT) and I don't know how to handle it. Please check $RBUILDLOG and $DEBIAN_URL/$SUITE/$ARCH/$SRCPACKAGE" + local MSG_PART1="Something weird happened when running $DIFFOSCOPE (which exited with $RESULT) and I don't know how to handle it" + handle_ftbr "$MSG_PART1" + irc_message debian-reproducible-changes "$MSG_PART1 Please check $RBUILDLOG and $DEBIAN_URL/$SUITE/$ARCH/$SRCPACKAGE" ;; esac } |