diff options
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index 1833b8c1..c1b89d24 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -490,14 +490,14 @@ create_main_stats_page() { done write_page "</p><p>" # write suite table - write_page "<table class=\"main\"><tr><th>suite</th><th>sources in total on $DATE</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>other packages</th></tr>" + write_page "<table class=\"main\"><tr><th>suite</th><th>sources in total</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>other packages</th></tr>" for SUITE in $SUITES ; do gather_suite_stats write_page "<tr><td>$SUITE</td><td>$AMOUNT</td><td>$COUNT_GOOD / $PERCENT_GOOD%</td><td>$COUNT_BAD / $PERCENT_BAD%</td><td>$COUNT_UGLY / $PERCENT_UGLY%</td><td>$COUNT_OTHER / $PERCENT_OTHER%</td></tr>" done write_page "</table>" # write inventory table - write_page "<table class=\"main\"><tr><th>inventory type</th><th>amount on $DATE</th></tr>" + write_page "<table class=\"main\"><tr><th>inventory type</th><th>amount</th></tr>" write_page "<tr><td>packages with notes</td><td>$NOTES</td></tr>" write_page "<tr><td>issues categorized</td><td>$ISSUES</td></tr>" write_page "</table>" |