diff options
Diffstat (limited to 'bin/reproducible_html_rpms.sh')
-rwxr-xr-x | bin/reproducible_html_rpms.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_rpms.sh b/bin/reproducible_html_rpms.sh index 60596dbf..8cef49d5 100755 --- a/bin/reproducible_html_rpms.sh +++ b/bin/reproducible_html_rpms.sh @@ -95,7 +95,7 @@ fi echo " <tr>" >> $HTML_RPM_STATS echo " <td>$RELEASE ($ARCH)</td><td>$NR_TESTED</td>" >> $HTML_RPM_STATS for i in $NR_GOOD $NR_FTBR $NR_FTBFS $NR_DEPWAIT $NR_404 $NR_UNKNOWN ; do - PERCENT_i=$(echo "scale=1 ; ($i*100/$TOTAL)" | bc) + PERCENT_i=$(echo "scale=1 ; ($i*100/$TESTED)" | bc) if [ "$PERCENT_i" != "0" ] ; then echo " <td>$i ($PERCENT_i%)</td>" >> $HTML_RPM_STATS else |