From 200a06ac575b8329a925ede478a54c6cb9f94014 Mon Sep 17 00:00:00 2001 From: Adam Wright Date: Sun, 10 Jan 2016 17:51:15 -0800 Subject: [PATCH] Print FAIL in red. --- hooks/pre-push | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/pre-push b/hooks/pre-push index be9282c..e609138 100755 --- a/hooks/pre-push +++ b/hooks/pre-push @@ -23,7 +23,7 @@ fi cargo test &>/dev/null if [ "$?" != "0" ]; then - echo ${GREEN}FAIL${NC} pre-push test check + echo ${RED}FAIL${NC} pre-push test check else echo ${GREEN}PASS${NC} pre-push test check fi