diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-12-06 19:29:22 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-12-06 19:29:22 +0000 |
commit | ef441f270e15d8167d9ca0201f619ae5786ceaa0 (patch) | |
tree | b73a40736ff0c75f940b140bca344772168daeba /scripts/review | |
parent | net-misc/ypd: add trailing slash to HOMEPAGE (diff) | |
download | sunrise-reviewed-ef441f270e15d8167d9ca0201f619ae5786ceaa0.tar.gz sunrise-reviewed-ef441f270e15d8167d9ca0201f619ae5786ceaa0.tar.bz2 sunrise-reviewed-ef441f270e15d8167d9ca0201f619ae5786ceaa0.zip |
define colours directly
svn path=/sunrise/; revision=5222
Diffstat (limited to 'scripts/review')
-rwxr-xr-x | scripts/review | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/review b/scripts/review index 1e1c0a4c4..3499f0713 100755 --- a/scripts/review +++ b/scripts/review @@ -4,13 +4,13 @@ source /etc/init.d/functions.sh -BLUE=$BRACKET +BLUE=$'\033[34;01m' BOLD=$'\e[0;01m' DARKGREEN=$'\e[32m' -GREEN=$GOOD +GREEN=$'\e[32;01m' LIGHTBLUE=$HILITE -RED=$BAD -YELLOW=$WARN +RED=$'\033[31;01m' +YELLOW=$'\033[33;01m' opt_norepoman=0 opt_noupdate=0 opt_quiet=0 |