summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_indexes.py
diff options
context:
space:
mode:
authorValerie R Young <spectranaut@riseup.net>2016-06-08 19:09:56 -0400
committerValerie R Young <spectranaut@riseup.net>2016-06-08 22:22:40 -0400
commit3ce1ce586c0d8079e8ce9ebe5fd1c2f8b66dfb92 (patch)
tree0380c171824130c390e5f84b957355f39c71554c /bin/reproducible_html_indexes.py
parentf836d85d3ded48ee8331d836a01e09ba3ce70dcb (diff)
downloadjenkins.debian.net-3ce1ce586c0d8079e8ce9ebe5fd1c2f8b66dfb92.tar.xz
reproducible debian: bug fix: only debian html belongs in tests.r-b.org/debian
Diffstat (limited to 'bin/reproducible_html_indexes.py')
-rwxr-xr-xbin/reproducible_html_indexes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py
index 7dd01aea..f0eda28b 100755
--- a/bin/reproducible_html_indexes.py
+++ b/bin/reproducible_html_indexes.py
@@ -522,11 +522,11 @@ def build_page(page, suite=None, arch=None):
html += html1
footnote = True if footnote1 else footnote
if gpage:
- destfile = BASE + '/index_' + page + '.html'
+ destfile = DEBIAN_BASE + '/index_' + page + '.html'
desturl = DEBIAN_URL + '/index_' + page + '.html'
suite = defaultsuite # used for the links generated by write_html_page
else:
- destfile = BASE + '/' + suite + '/' + arch + '/index_' + page + '.html'
+ destfile = DEBIAN_BASE + '/' + suite + '/' + arch + '/index_' + page + '.html'
desturl = DEBIAN_URL + '/' + suite + '/' + arch + '/index_' + \
page + '.html'
write_html_page(title=title, body=html, destfile=destfile, suite=suite, arch=arch, style_note=True)