diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-10 10:30:27 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-10 10:30:27 +0100 |
commit | 08a265e66a422805f0e339939d1cbc957ce6d264 (patch) | |
tree | 107d0a45d425ea70fe8912c3d3d39777b1960749 | |
parent | 2e8c2a1841e4a3755473c648dbd10cf8e3872f14 (diff) | |
download | jenkins.debian.net-08a265e66a422805f0e339939d1cbc957ce6d264.tar.xz |
reproducible: improve output
-rwxr-xr-x | bin/reproducible_build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 8a3782bb..d1575c9f 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -67,7 +67,8 @@ call_debbindiff() { # write locks are only done by the schroot setup job touch $DBDCHROOT_READLOCK fi - echo "$(date) - $(schroot --directory /tmp -c source:jenkins-reproducible-sid-debbindiff debbindiff -- --version) will be used to compare the two builds now." | tee -a ${RBUILDLOG} + echo + echo "$(date) - $(schroot --directory /tmp -c source:jenkins-reproducible-sid-debbindiff debbindiff -- --version 2>&1) will be used to compare the two builds now." | tee -a ${RBUILDLOG} ( timeout 15m schroot --directory $TMPDIR -c source:jenkins-reproducible-sid-debbindiff debbindiff -- --html ./${LOGFILE} ./b1/${SRCPACKAGE}_${EVERSION}_${ARCH}.changes ./b2/${SRCPACKAGE}_${EVERSION}_${ARCH}.changes ) 2>&1 >> ${RBUILDLOG} RESULT=$? set +x |