diff options
author | Chris Lamb <lamby@debian.org> | 2015-02-18 13:19:36 +0000 |
---|---|---|
committer | Chris Lamb <lamby@debian.org> | 2015-02-18 13:19:36 +0000 |
commit | 233aace4934dc899faa86edbff503318bbb391cd (patch) | |
tree | 48981d650eb0cec38b0f97d411cdeb2bb70335b1 /bin | |
parent | 5db5ab65a8987cc3c51a78336560a6e986d864e1 (diff) | |
download | jenkins.debian.net-233aace4934dc899faa86edbff503318bbb391cd.tar.xz |
Drop implicit "please investigate" prefix from IRC message
This makes it not wrap onto a newline on my rather low-resolution laptop.
The URL is more than sufficient I feel; it's kinda implicit that its a
request for someone to do something anyway - why would we be reporting it
to IRC otherwise, etc.
Signed-off-by: Chris Lamb <lamby@debian.org>
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 2e0fecd2..ff84ecaa 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -99,7 +99,7 @@ call_debbindiff() { fi OLD_STATUS=$(sqlite3 -init $INIT ${PACKAGES_DB} "SELECT status FROM source_packages WHERE name=\"${SRCPACKAGE}\"") if [ "${OLD_STATUS}" == "reproducible" ]; then - MESSAGE="${SRCPACKAGE} became unreproducible while it has been successfully built reproducibly in the past. Please investigate ${REPRODUCIBLE_URL}/${SRCPACKAGE}" + MESSAGE="${SRCPACKAGE} became unreproducible while it has been successfully built reproducibly in the past. ${REPRODUCIBLE_URL}/${SRCPACKAGE}" kgb-client --conf /srv/jenkins/kgb/debian-reproducible.conf --relay-msg "$MESSAGE" || true # don't fail the whole job fi sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"${VERSION}\", \"unreproducible\", \"$DATE\")" |