diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-12 13:30:01 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-12 13:30:01 +0100 |
commit | 7a488ab89967436e4c58363b36c9e06bff94b080 (patch) | |
tree | 625a142865e000bff8c5252aa015dde2114a0a68 | |
parent | 78cdc04086c894992d9ca4750336fc11c71dc2e0 (diff) | |
download | jenkins.debian.net-7a488ab89967436e4c58363b36c9e06bff94b080.tar.xz |
reproducible: no irc notifications for reschedulings by maintenance job
-rwxr-xr-x | bin/reproducible_schedule_on_demand.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_schedule_on_demand.sh b/bin/reproducible_schedule_on_demand.sh index f95ae454..ef953cf7 100755 --- a/bin/reproducible_schedule_on_demand.sh +++ b/bin/reproducible_schedule_on_demand.sh @@ -73,7 +73,9 @@ cd /srv/jenkins/bin python3 -c "from reproducible_html_indexes import build_page; build_page('scheduled')" echo echo "$MESSAGE" -kgb-client --conf /srv/jenkins/kgb/debian-reproducible.conf --relay-msg "$MESSAGE" +if [ -z "${BUILD_URL:-}" ] ; then + kgb-client --conf /srv/jenkins/kgb/debian-reproducible.conf --relay-msg "$MESSAGE" +fi echo "=============================================================================" echo "The following $TOTAL source $PACKAGES_TXT $ACTION for $SUITE: $PACKAGES_NAMES" echo "=============================================================================" |