diff options
author | shawn <ag4ve.us@gmail.com> | 2015-09-23 18:47:09 -0400 |
---|---|---|
committer | shawn <ag4ve.us@gmail.com> | 2015-09-23 18:47:09 -0400 |
commit | 7a636097f8cdc5cacfe9c2e794d885fa3ecfc5dc (patch) | |
tree | 052f3b9727df867d45c068ed8765ac6b4b41e74e /lib | |
parent | 76a26a2a59d8c6d0f65a4426cdb93920e255aea7 (diff) | |
download | zsh-7a636097f8cdc5cacfe9c2e794d885fa3ecfc5dc.tar.gz zsh-7a636097f8cdc5cacfe9c2e794d885fa3ecfc5dc.tar.bz2 zsh-7a636097f8cdc5cacfe9c2e794d885fa3ecfc5dc.zip |
Correct repo dir
cvs's metadata is under CVS and not .cvs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/grep.zsh | 2 |
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" |