diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-06 15:49:13 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-04-18 17:20:08 +0200 |
commit | 87399e68fdcffa97df7ebf32cc8dccf4d4d528c0 (patch) | |
tree | 6c3b03d8abb1d41d0ddff6d38d69c5d1250269ec | |
parent | 4805db3c115ed6a0fcb6f2417b5cd280e8c9aa8e (diff) | |
download | jenkins.debian.net-87399e68fdcffa97df7ebf32cc8dccf4d4d528c0.tar.xz |
reproducible: build: refactor: call_debbindiff(): add a catchall for every evenience
-rwxr-xr-x | bin/reproducible_build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 186f934f..b8d1e339 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -220,6 +220,10 @@ call_debbindiff() { 124) dbd_timeout ;; + *) + DEBBINDIFFOUT="Something weird with $DBDVERSION happened and I don't know how to handle it. Check out $BUILDLOG and $REPRODUCIBLE_URL/$SUITE/$ARCH/$SRCPACKAGE and investigate manually" + handle_ftbr + ;; esac print_out_duration } |