diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-16 14:53:38 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-16 14:53:38 +0100 |
commit | b4cad83cf262a1b1ac1988087703bed1c3ba5892 (patch) | |
tree | a62419c7f401fc5d8852237f7ad82b87b9ddb94e /bin | |
parent | 4e95dd0c9737493f75ef7a3bacfaefacf03103ae (diff) | |
download | jenkins.debian.net-b4cad83cf262a1b1ac1988087703bed1c3ba5892.tar.xz |
reproducible: deterministic link order
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 70fcc9da..de525aab 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -201,12 +201,8 @@ def _gen_links(suite, arch): html += link[1].format(suite=suite, arch=arch) + '\n' if not suite: html += link[1].format(suite='unstable', arch=arch) + '\n' - if suite: # suite stats - html += '<li><a href="/' + suite + \ - '/index_suite_stats.html">suite: ' + suite + '</a></li>' for i in SUITES: # suite links - if i != suite: - html += '<li><a href="/' + i +'">suite: ' + i + '</a></li>' + html += '<li><a href="/' + i +'">suite: ' + i + '</a></li>' return html |