diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-05 14:39:21 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-05 14:39:21 +0200 |
commit | 48631732cc524d285cc47b0454513de8c2f31d21 (patch) | |
tree | 2390c478eb2426bfb42438f7fc70f52666c8604d | |
parent | 2e449c4f408a26fd28839f8fce44a3ef4663aa5a (diff) | |
download | jenkins.debian.net-48631732cc524d285cc47b0454513de8c2f31d21.tar.xz |
reproducible: fix logic
-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 67a5b491..c3fc6353 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -166,7 +166,7 @@ for SRCPACKAGE in ${PACKAGES} ; do LOGFILE=$(echo ${LOGFILE%.dsc}.debbindiff.html) BUILDINFO=${SRCPACKAGE}_${EVERSION}_amd64.buildinfo /var/lib/jenkins/debbindiff.git/debbindiff.py --html ./${LOGFILE} b1/${SRCPACKAGE}_${EVERSION}_amd64.changes b2/${SRCPACKAGE}_${EVERSION}_amd64.changes || true - if [ ! -f ./${LOGFILE} ] && [ ! -f b1/${BUILDINFO} ] ; then + if [ ! -f ./${LOGFILE} ] && [ -f b1/${BUILDINFO} ] ; then cleanup_userContent cp b1/${BUILDINFO} /var/lib/jenkins/userContent/buildinfo/ figlet ${SRCPACKAGE} |