From 7a636097f8cdc5cacfe9c2e794d885fa3ecfc5dc Mon Sep 17 00:00:00 2001
From: shawn <ag4ve.us@gmail.com>
Date: Wed, 23 Sep 2015 18:47:09 -0400
Subject: [PATCH] Correct repo dir

cvs's metadata is under CVS and not .cvs
---
 lib/grep.zsh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/grep.zsh b/lib/grep.zsh
index 3fa103d19..abc1650a1 100644
--- a/lib/grep.zsh
+++ b/lib/grep.zsh
@@ -11,7 +11,7 @@ if grep-flag-available --color=auto; then
 fi
 
 # ignore VCS folders (if the necessary grep flags are available)
-VCS_FOLDERS="{.bzr,.cvs,.git,.hg,.svn}"
+VCS_FOLDERS="{.bzr,CVS,.git,.hg,.svn}"
 
 if grep-flag-available --exclude-dir=.cvs; then
     GREP_OPTIONS+=" --exclude-dir=$VCS_FOLDERS"