diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-19 23:57:45 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-19 23:57:45 +0200 |
commit | d91fd954c9b337141711abb75e736012c0e715b7 (patch) | |
tree | a6f786c312d5c9ab622135d1e0f8c20e41bd8c38 | |
parent | 2343dee4b57c1a12b02878b01bc47baf2794633e (diff) | |
download | jenkins.debian.net-d91fd954c9b337141711abb75e736012c0e715b7.tar.xz |
reproducible fixup
-rwxr-xr-x | bin/reproducible_common.py | 4 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index e65ed4dc..0a5d7388 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -272,9 +272,9 @@ def _gen_links(suite, arch): 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>' + html += '<li><a href="/unstable/index_suite_armhf_stats.html\">armhf</a></li>' else - html += '<li><a href="/unstable/index_suite_amd64.html\">amd64</a></li>' + html += '<li><a href="/unstable/index_suite_amd64_stats.html\">amd64</a></li>' return html diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 234754c6..b84a4669 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -227,10 +227,10 @@ write_page_header() { elif [ "$TARGET" = "notify" ] ; then write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\" title=\"notify icon\">${SPOKEN_TARGET}</a></li>" elif [ "$TARGET" = "arch" ] ; then - if [ "$ARCH" ] = "amd64" ; then - write_page "<li><a href=\"/unstable/index_suite_armhf.html\">armhf</a></li>" + if [ "$ARCH" = "amd64" ] ; then + write_page "<li><a href=\"/unstable/index_suite_armhf_stats.html\">armhf</a></li>" else - write_page "<li><a href=\"/unstable/index_suite_amd64.html\">amd64</a></li>" + write_page "<li><a href=\"/unstable/index_suite_amd64_stats.html\">amd64</a></li>" fi else write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\">${SPOKEN_TARGET}</a></li>" |