diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-19 19:33:35 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-19 19:33:35 +0200 |
commit | 64337e84f42de03d2d2474faf196a7f5981abaa0 (patch) | |
tree | 0dc16c9c991d56c0764c633e850fb88920369573 | |
parent | 704aa6cdc537e75fcc38df28bc46fd7437ca96d7 (diff) | |
download | jenkins.debian.net-64337e84f42de03d2d2474faf196a7f5981abaa0.tar.xz |
reproducible: fix pathes to images
-rwxr-xr-x | bin/reproducible_html_dashboards.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_dashboards.sh b/bin/reproducible_html_dashboards.sh index e43e7de3..9e347681 100755 --- a/bin/reproducible_html_dashboards.sh +++ b/bin/reproducible_html_dashboards.sh @@ -322,7 +322,7 @@ create_main_stats_page() { # write suite graphs write_page "</p><p style=\"clear:both;\">" for SUITE in $SUITES ; do - write_page " <a href=\"/$SUITE\"><img src=\"/userContent/$SUITE/${TABLE[0]}.png\" class=\"overview\" alt=\"$SUITE stats\"></a>" + write_page " <a href=\"/$SUITE\"><img src=\"/userContent/$SUITE/$ARCH/${TABLE[0]}.png\" class=\"overview\" alt=\"$SUITE/$ARCH stats\"></a>" done write_page "</p><p><center>" # write meta pkg graphs per suite @@ -393,7 +393,7 @@ create_main_stats_page() { # write suite builds age graphs write_page "</p><p style=\"clear:both;\">" for SUITE in $SUITES ; do - write_page " <a href=\"/$SUITE\"><img src=\"/userContent/$SUITE/${TABLE[2]}.png\" class=\"overview\" alt=\"age of oldest reproducible build result in $SUITE\"></a>" + write_page " <a href=\"/$SUITE/$ARCH/\"><img src=\"/userContent/$SUITE/$ARCH/${TABLE[2]}.png\" class=\"overview\" alt=\"age of oldest reproducible build result in $SUITE/$ARCH\"></a>" done # write build performace stats write_page "<table class=\"main\"><tr><th colspan=\"2\">Build statistics</th></tr>" |