summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-08-26 10:15:51 +0200
committerHolger Levsen <holger@layer-acht.org>2015-08-26 10:15:51 +0200
commitdad04e49b3e224f217f072f1758386f8f3031fd9 (patch)
treee47d17afd62b3b5e9f71539ebde0e87c61e0ab7e /bin
parent249fce35cc4fa1f46634a1913accfe095a984dab (diff)
downloadjenkins.debian.net-dad04e49b3e224f217f072f1758386f8f3031fd9.tar.xz
reproducible: change link names from "$arch" to "arch: $arch"
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.py4
-rwxr-xr-xbin/reproducible_common.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index fd727714..e56dab98 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -275,9 +275,9 @@ def _gen_links(suite, arch):
continue
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\">armhf</a></li>'
+ 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\">amd64</a></li>'
+ html += '<li><a href="/unstable/index_suite_amd64_stats.html\">arch: amd64</a></li>'
return html
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index d97da615..d728a182 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -228,9 +228,9 @@ write_page_header() {
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_stats.html\">armhf</a></li>"
+ write_page "<li><a href=\"/unstable/index_suite_armhf_stats.html\">arch: armhf</a></li>"
else
- write_page "<li><a href=\"/unstable/index_suite_amd64_stats.html\">amd64</a></li>"
+ write_page "<li><a href=\"/unstable/index_suite_amd64_stats.html\">arch: amd64</a></li>"
fi
else
write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\">${SPOKEN_TARGET}</a></li>"