summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_json.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-01-15 11:38:02 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-15 11:38:02 +0100
commita0bf06c658bb16117552e0575a8c7296dc9e9d21 (patch)
tree387b0584ba4c78eba3def77336e0990f5399a20d /bin/reproducible_json.sh
parent8393811602eecf89ee533a3e87acb1cca7ac50f4 (diff)
downloadjenkins.debian.net-a0bf06c658bb16117552e0575a8c7296dc9e9d21.tar.xz
reproducible: stop treating creating .buildinfo files specially (as every build creates it nowadays)
Diffstat (limited to 'bin/reproducible_json.sh')
-rwxr-xr-xbin/reproducible_json.sh7
1 files changed, 1 insertions, 6 deletions
diff --git a/bin/reproducible_json.sh b/bin/reproducible_json.sh
index aea32913..9c877e45 100755
--- a/bin/reproducible_json.sh
+++ b/bin/reproducible_json.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# Copyright 2014 Holger Levsen <holger@layer-acht.org>
+# Copyright 2014-2015 Holger Levsen <holger@layer-acht.org>
# released under the GPLv=2
DEBUG=false
@@ -27,11 +27,6 @@ while read LINE ; do
PKG=$(echo "$LINE" | cut -d "|" -f1)
VERSION=$(echo "$LINE" | cut -d "|" -f2)
STATUS=$(echo "$LINE" | cut -d "|" -f3)
- if [ "$STATUS" = "unreproducible" ] ; then
- if [ -f /var/lib/jenkins/userContent/buildinfo/${PKG}_${VERSION}_amd64.buildinfo ] ; then
- STATUS="$STATUS-with-buildinfo"
- fi
- fi
write_json "${sep}{"
write_json "\"package\": \"$PKG\","
write_json "\"version\": \"$VERSION\","