mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Vundle plugin now works with submodules.
If you are using a submodule, ~/.vim/bundle/vundle/.git is a file, not a directory. So I changed the test for that.
This commit is contained in:
parent
aee8877988
commit
519d37fc38
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ function vundle-init () {
|
||||||
mkdir -p ~/.vim/bundle/vundle/
|
mkdir -p ~/.vim/bundle/vundle/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d ~/.vim/bundle/vundle/.git/ ]
|
if [ ! -d ~/.vim/bundle/vundle/.git ] && [ ! -f ~/.vim/bundle/vundle/.git ]
|
||||||
then
|
then
|
||||||
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
|
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"
|
echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
|
||||||
|
|
Loading…
Reference in a new issue