diff options
-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 |