Status report tweaks.

This commit is contained in:
David Brown 2016-07-20 14:32:15 +01:00
parent 92e892c450
commit 0004fca318
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ fi
# Set ibrary paths for darwin and termux(android) # Set ibrary paths for darwin and termux(android)
export DYLD_LIBRARY_PATH=$1/lib:$DYLD_LIBRARY_PATH export DYLD_LIBRARY_PATH=$1/lib:$DYLD_LIBRARY_PATH
export LD_LIBRARY_PATH=$1/lib:$LD_LIBRARY_PATH export LD_LIBRARY_PATH=$1/lib:$LD_LIBRARY_PATH
rm -f *.o *.obj *.exe *.sym *.c *.h result rm -f *.o *.obj *.exe *.sym *.c *.h result new.asm
# Under gcc generate assembly source for source change test. # Under gcc generate assembly source for source change test.
# NOTE: The following CFLAGS causes the assembler to write source # NOTE: The following CFLAGS causes the assembler to write source

View file

@ -156,8 +156,8 @@ sub svgtext {
sub colourfor { sub colourfor {
my ($str) = @_; my ($str) = @_;
if ($str eq "Failed") {return "#e03030";} if ($str eq "Failed") {return "#e03030";}
if ($str eq "Changed") {return "#d0a030";} if ($str eq "Changed") {return "#ff9d4d";}
return "#60ff60"; return "#5adb5a";
} }
my $rows = keys %status; my $rows = keys %status;