diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index a203ece6..1c177726 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -232,7 +232,7 @@ write_usertag_table() { let "TOPEN=TOPEN+VALUE" else write_page "<td>$VALUE</td>" - let "TOTAL=TOTAL+VALUE" + let "TOTAL=TOTAL+VALUE" || true # let FOO=0+0 returns error in bash... let "TDONE=TDONE+VALUE" write_page "<td>$TOTAL</td></tr>" let "TTOTAL=TTOTAL+TOTAL" |