diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-19 23:54:07 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-19 23:54:07 +0200 |
commit | c3d65388c43b1bd820869e778b092570ef7bef4d (patch) | |
tree | edebedf87d9078309fb51cedc0228add5bf1c77d | |
parent | 6799a8afa06894bb9958daf850dfe14dccf87990 (diff) | |
download | jenkins.debian.net-c3d65388c43b1bd820869e778b092570ef7bef4d.tar.xz |
reproducible: add links to (the) other archs
-rwxr-xr-x | bin/reproducible_common.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 11b56280..e65ed4dc 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -271,6 +271,10 @@ def _gen_links(suite, arch): html += link[1].format(suite=suite, arch=arch) + '\n' for i in SUITES: # suite links html += '<li><a href="/' + i +'">suite: ' + i + '</a></li>' + if arch == 'amd64': + html += '<li><a href="/unstable/index_suite_armhf.html\">armhf</a></li>' + else + html += '<li><a href="/unstable/index_suite_amd64.html\">amd64</a></li>' return html |