summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-04-05 23:27:49 +0200
committerHolger Levsen <holger@layer-acht.org>2015-04-18 17:20:07 +0200
commit75f5eafb9001be10aab81cae7bf5d59b635bc9d2 (patch)
treeadab747e015793b6b0b4261c06a2d3466b4419c0 /bin/reproducible_build.sh
parentd6e3bdb309537ecf98cd9e3384e7194cc63904d2 (diff)
downloadjenkins.debian.net-75f5eafb9001be10aab81cae7bf5d59b635bc9d2.tar.xz
reproducible: build: refactor: stop checking for .buildinfo presence. it's always there nowadays
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index cb4cd4ee..bb7279c7 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -138,11 +138,7 @@ call_debbindiff() {
else
echo -n ", $DBDVERSION produced no output (which is strange)"
fi
- if [ ! -f b1/${BUILDINFO} ] ; then
- echo " and a .buildinfo file is missing." | tee -a ${RBUILDLOG}
- else
- echo "." | tee -a ${RBUILDLOG}
- fi
+ echo "." | tee -a ${RBUILDLOG}
OLD_STATUS=$(sqlite3 -init $INIT ${PACKAGES_DB} "SELECT status FROM results WHERE package_id='${SRCPKGID}'")
calculate_build_duration
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO results (package_id, version, status, build_date, build_duration) VALUES ('${SRCPKGID}', '${VERSION}', 'unreproducible', '$DATE', '$DURATION')"