summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2015-09-26 09:32:37 -0700
committerRobby Russell <robby@planetargon.com>2015-09-26 09:32:37 -0700
commitc076fc084212811c51d8b003892a91011b029e6f (patch)
treeef403f7ab189aba47ab65a699920bb0b5644f192 /lib
parent4204cfd22fdb90ee73c33022ecbb32ac2a56c0a2 (diff)
parent7a636097f8cdc5cacfe9c2e794d885fa3ecfc5dc (diff)
downloadzsh-c076fc084212811c51d8b003892a91011b029e6f.tar.gz
zsh-c076fc084212811c51d8b003892a91011b029e6f.tar.bz2
zsh-c076fc084212811c51d8b003892a91011b029e6f.zip
Merge pull request #4392 from ag4ve/patch-1
Correct repo dir
Diffstat (limited to 'lib')
-rw-r--r--lib/grep.zsh2
1 files changed, 1 insertions, 1 deletions
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"