From f07197c2cd2b166337ed6f76ba0c25891f7aa5ce Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Wed, 8 Feb 2012 08:00:50 -0800 Subject: [PATCH] use red instead of green --- bin/git-effort | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/git-effort b/bin/git-effort index ada8bf6..0297140 100755 --- a/bin/git-effort +++ b/bin/git-effort @@ -21,8 +21,8 @@ for file in $files; do test $commits -gt 10 && color='33' test $commits -gt 25 && color='93' - test $commits -gt 50 && color='32' - test $commits -gt 100 && color='92' + test $commits -gt 50 && color='31' + test $commits -gt 100 && color='91' printf " \033[${color}m%-45s %d\033[0m\n" $file $commits done