diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-03-29 18:00:58 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-03-29 18:00:58 -0400 |
commit | 1d3cf79418140c54b43b77f04c1c34b9806f8523 (patch) | |
tree | 08cafd1e4b64c2a6f89bf6eedb8f371d106025a9 | |
parent | ae7dca01c66c3cfd1e43fc4639a90f33bb12a564 (diff) | |
download | jenkins.debian.net-1d3cf79418140c54b43b77f04c1c34b9806f8523.tar.xz |
reproducible debian: add i386 to navigation
-rwxr-xr-x | bin/reproducible_common.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 57a98fe4..7f340788 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -311,10 +311,9 @@ 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 + '/index_suite_' + arch + '_stats.html">suite: ' + i + '</a></li>' - if arch == 'amd64': - html += '<li><a href="/unstable/index_suite_armhf_stats.html\">arch: armhf</a></li>' - else: - html += '<li><a href="/unstable/index_suite_amd64_stats.html\">arch: amd64</a></li>' + for linkarch in ARCHS: + if arch != linkarch: + html += '<li><a href="/unstable/index_suite_' + linkarch + '_stats.html\">arch: ' + arch + '</a></li>' return html |