diff options
-rwxr-xr-x | bin/reproducible_html_repo_stats.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_repo_stats.sh b/bin/reproducible_html_repo_stats.sh index a4c654b3..d20ebfdf 100755 --- a/bin/reproducible_html_repo_stats.sh +++ b/bin/reproducible_html_repo_stats.sh @@ -56,17 +56,17 @@ for PKG in $SOURCES ; do CSID="" for i in $SID ; do if dpkg --compare-versions "$i" gt "$BET" ; then - CSID="$CSID<span class=\"orange\">$i</span><br />" - BET="" + CSID="$CSID<span class=\"green\">$i</span><br />" if [ ! -z "$BET" ] ; then CRUFT="$BET $CRUFT" + BET="" fi else CSID="$CSID$i<br />" fi done if [ ! -z "$BET" ] ; then - BET="<span class=\"green\">$BET</span>" + BET="<span class=\"purple\">$BET</span>" else BET=" " fi |