summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_packages.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-06 18:13:53 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-06 18:13:53 +0200
commitf3c889b11dda779a78ec2933e08582e5612e4dd0 (patch)
tree699012a4f8cb819ca6f4dfa46639feb384620173 /bin/reproducible_html_packages.py
parentd6539c17e204efb7cc27de5006e0896483d1d79c (diff)
downloadjenkins.debian.net-f3c889b11dda779a78ec2933e08582e5612e4dd0.tar.xz
reproducible: fix pkg_has_buildinfo() to work with any arch
Diffstat (limited to 'bin/reproducible_html_packages.py')
-rwxr-xr-xbin/reproducible_html_packages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py
index 81c00089..adfa5c6b 100755
--- a/bin/reproducible_html_packages.py
+++ b/bin/reproducible_html_packages.py
@@ -144,7 +144,7 @@ def gen_extra_links(package, version, suite, arch, status):
links += dbd[0] if dbd[0] else ''
if dbd[0] and not default_view:
default_view = dbd[1]
- if pkg_has_buildinfo(package, version, suite):
+ if pkg_has_buildinfo(package, version, suite, arch):
url = BUILDINFO_URI + '/' + suite + '/' + arch + '/' + package + \
'_' + eversion + '_' + arch + '.buildinfo'
links += '<li><a href="' + url + '" target="main">buildinfo</a></li>\n'