summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-02-25 11:42:08 +0100
committerHolger Levsen <holger@layer-acht.org>2015-02-25 11:42:08 +0100
commitb8f55bfebb2a70c078b3d38f9e7042a4e00ee192 (patch)
tree844a9d73cf9a388c9eb8736e76295f64cf3236bc
parent03a20574216f8f15faf42ac6fb71404216b91326 (diff)
downloadjenkins.debian.net-b8f55bfebb2a70c078b3d38f9e7042a4e00ee192.tar.xz
reproducible: improve colors
-rwxr-xr-xbin/reproducible_html_repo_stats.sh6
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="&nbsp;"
fi