diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-21 00:25:20 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-21 00:25:20 +0100 |
commit | fb4b81b40ff525d3e7a1bf742f56be759c910ee4 (patch) | |
tree | 271fcf6eb4088261b3e261adeacf8a4c282852d9 | |
parent | c6d1d65d18f06c1d48503bb8efdd9eea1c32a647 (diff) | |
download | jenkins.debian.net-fb4b81b40ff525d3e7a1bf742f56be759c910ee4.tar.xz |
reproducible: fix links on global pages
-rwxr-xr-x | bin/reproducible_html_indexes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index 3e3d550c..7987c206 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -359,6 +359,7 @@ def build_page(page, suite=None, arch=None): if not suite: # global page destfile = BASE + '/index_' + page + '.html' desturl = REPRODUCIBLE_URL + '/index_' + page + '.html' + suite = defaultsuite # used for the links generated by write_html_page else: destfile = BASE + '/' + suite + '/' + arch + '/index_' + page + '.html' desturl = REPRODUCIBLE_URL + '/' + suite + '/' + arch + '/index_' + \ |