From fcad9a4bbb838cc7b26977dc18df1819748c5199 Mon Sep 17 00:00:00 2001 From: gmarik Date: Thu, 12 May 2011 14:50:56 -0500 Subject: [PATCH] closes #31 - append slash to indicate directory, so expand ingnores wildignore settings --- autoload/vundle/installer.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index e0fbdda..17fa5a3 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -62,7 +62,7 @@ func! s:helptags(rtp) abort endf func! s:sync(bang, bundle) abort - let git_dir = expand(a:bundle.path().'/.git') + let git_dir = expand(a:bundle.path().'/.git/') if isdirectory(git_dir) if !(a:bang) | return 0 | endif let cmd = 'cd '.shellescape(a:bundle.path()).' && git pull'