diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 2 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 21a4adaf..9a73a2c4 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -213,7 +213,7 @@ def _gen_links(suite, arch): ('last_24h', '<li><a href="/{suite}/{arch}/index_last_24h.html">packages tested in the last 24h</a></li>'), ('last_48h', '<li><a href="/{suite}/{arch}/index_last_48h.html">packages tested in the last 48h</a></li>'), ('all_abc', '<li><a href="/{suite}/{arch}/index_all_abc.html">all tested packages (sorted alphabetically)</a></li>'), - ('notify', '<li><a href="/index_notify.html">⚑</a></li>'), + ('notify', '<li><a href="/index_notify.html" title="notify icon">⚑</a></li>'), ('dd-list', '<li><a href="/{suite}/index_dd-list.html">maintainers of unreproducible packages</a></li>'), ('pkg_sets', '<li><a href="/{suite}/{arch}/index_pkg_sets.html">package sets stats</a></li>') ] diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 20fc4a43..0bec423b 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -225,6 +225,8 @@ write_page_header() { for i in $SUITES ; do write_page "<li><a href=\"/$i\">suite: $i</a></li>" done + elif [ "$TARGET" = "notify" ] ; then + write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\" title=\"notify icon\">${SPOKEN_TARGET}</a></li>" else write_page "<li><a href=\"$BASEURL/index_${TARGET}.html\">${SPOKEN_TARGET}</a></li>" fi |