From: martin f. krafft Date: Tue, 6 May 2008 23:15:17 +0000 (+0100) Subject: Don't detect SVN/SVK/CVS, which are not implemented yet X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/133e70749425901f59a1b8e15855e647848919b5 Don't detect SVN/SVK/CVS, which are not implemented yet --- diff --git a/.zsh/zshrc/85_vcs_prompt b/.zsh/zshrc/85_vcs_prompt index 0c9db46..a99ca18 100644 --- a/.zsh/zshrc/85_vcs_prompt +++ b/.zsh/zshrc/85_vcs_prompt @@ -71,9 +71,6 @@ __vcs_get_repo_type() [ -d ${dir}.git ] && echo git && break [ -d ${dir}.bzr ] && echo bzr && break [ -d ${dir}.hg ] && echo hg && break - [ -d ${dir}.svn ] && echo svn && break - [ -d ${dir}.svk ] && echo svk && break - [ -d ${dir}CVS ] && echo cvs && break [ "$(readlink -f ${dir:-.})" = / ] && echo NONE && break dir="../$dir" done