Skip to content

Commit

Permalink
Vundle plugin now works with submodules.
Browse files Browse the repository at this point in the history
If you are using a submodule, ~/.vim/bundle/vundle/.git is a file,
not a directory. So I changed the test for that.
  • Loading branch information
kokx authored and ncanceill committed Jun 8, 2014
1 parent aee8877 commit 519d37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/vundle/vundle.plugin.zsh
Expand Up @@ -4,7 +4,7 @@ function vundle-init () {
mkdir -p ~/.vim/bundle/vundle/
fi

if [ ! -d ~/.vim/bundle/vundle/.git/ ]
if [ ! -d ~/.vim/bundle/vundle/.git ] && [ ! -f ~/.vim/bundle/vundle/.git ]
then
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
Expand Down

0 comments on commit 519d37f

Please sign in to comment.