From 938c982e9950ec6cda094970a5ac7bc549455cae Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Sat, 10 Dec 2011 16:35:54 +0800 Subject: [PATCH] Fixed bisect tool --- lib/git/tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/git/tools.sh b/lib/git/tools.sh index 15aed51..9b368a0 100644 --- a/lib/git/tools.sh +++ b/lib/git/tools.sh @@ -73,5 +73,5 @@ git_bisect_grep() { git bisect start git bisect good $1 git bisect bad - git bisect run grep -qvRE "$2" $search_path + git bisect run grep -qRE "$2" $search_path }