diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-08-08 14:15:30 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-08 16:16:31 +0200 |
commit | 19a853a6095a06c1863090da87b59177e2c9f0c8 (patch) | |
tree | d57f7d7b02ed8bf10a9d9461db0bd7d6b5830d7b /bin | |
parent | f4bdab72c95cdb370ddd0d17c94feb1557c06f4f (diff) | |
download | jenkins.debian.net-19a853a6095a06c1863090da87b59177e2c9f0c8.tar.xz |
reproducible: _html_packages: do not hardcode amd64 in buildinfo filename
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_packages.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 31080862..c55e8cb9 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -127,7 +127,7 @@ def gen_extra_links(package, version, suite, arch, status): eversion = strip_epoch(version) notes = NOTES_PATH + '/' + package + '_note.html' buildinfo = BUILDINFO_PATH + '/' + suite + '/' + arch + '/' + package + \ - '_' + eversion + '_amd64.buildinfo' + '_' + eversion + '_' + arch + '.buildinfo' dbd = DBD_PATH + '/' + suite + '/' + arch + '/' + package + '_' + \ eversion + '.debbindiff.html' dbdtxt = DBDTXT_PATH + '/' + suite + '/' + arch + '/' + package + '_' + \ @@ -160,7 +160,7 @@ def gen_extra_links(package, version, suite, arch, status): default_view = url if pkg_has_buildinfo(package, version, suite): url = BUILDINFO_URI + '/' + suite + '/' + arch + '/' + package + \ - '_' + eversion + '_amd64.buildinfo' + '_' + eversion + '_' + arch + '.buildinfo' links += '<a href="' + url + '" target="main">buildinfo</a>\n' if not default_view: default_view = url |