diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-02-20 01:55:22 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-02-20 01:55:22 +0100 |
commit | dc6a0a37e1067005a9784ba00ba024a1afa13f1b (patch) | |
tree | 7cfc297e7da4c5f04670b686e8fd1594a0f64ada /bin | |
parent | 5805f4780cafa5051f03d8c1a74cd72bd07de9f5 (diff) | |
download | jenkins.debian.net-dc6a0a37e1067005a9784ba00ba024a1afa13f1b.tar.xz |
reproducible Debian: add links to debian/$SUITE/$ARCH in suite table
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_dashboard.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh index 928f1fd8..329f4f01 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -406,7 +406,7 @@ write_suite_arch_table() { for SUITE in $SUITES ; do for ARCH in ${ARCHS} ; do gather_suite_arch_stats - write_page "<tr><td class=\"left\">$SUITE/$ARCH</td><td>$AMOUNT" + write_page "<tr><td class=\"left\"><a href=\"/debian/$SUITE/$ARCH\">$SUITE/$ARCH</a></td><td>$AMOUNT" if [ $(echo $PERCENT_TOTAL/1|bc) -lt 99 ] ; then write_page "<span style=\"font-size:0.8em;\">($PERCENT_TOTAL% tested)</span>" fi |