diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-02-20 17:26:50 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-02-20 17:26:50 +0100 |
commit | c1f24b455b45e4d688e00e8c22a6f927d94c6e66 (patch) | |
tree | 2eccbb7725835caef3744f5be6317824d46c74c8 | |
parent | b890af43294513bd35b2377e6228071a3a8823c9 (diff) | |
download | jenkins.debian.net-c1f24b455b45e4d688e00e8c22a6f927d94c6e66.tar.xz |
reproducible Debian: disable irc notification for 500 buildinfo problems
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-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 7767587a..7cbb4134 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -854,7 +854,7 @@ share_buildinfo() { curl -s -X PUT --max-time 30 --data-binary @- "https://buildinfo.debian.net/api/submit" < ./${X}/$BUILDINFO_SIGNED > $TMPFILE || log_error "Could not submit buildinfo from ${X} to http://buildinfo.debian.net/api/submit" cat $TMPFILE if grep -q "500 Internal Server Error" $TMPFILE ; then - irc_message debian-reproducible "${BUILD_URL} got error code 500 from buildinfo.debian.net" + echo no irc_message debian-reproducible "${BUILD_URL} got error code 500 from buildinfo.debian.net" fi rm $TMPFILE done |