summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>"