Browse Source

closes #31

- append slash to indicate directory, so expand ingnores wildignore
settings
pull/33/merge
gmarik 15 years ago
parent
commit
fcad9a4bbb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim

+ 1
- 1
autoload/vundle/installer.vim View File

@ -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'


Loading…
Cancel
Save