diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 1ec1c10..f724ea2 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -73,7 +73,7 @@ func! s:sync(bang, bundle) abort if isdirectory(git_dir) if !(a:bang) | return [0, 'skip'] | endif lcd `=a:bundle.path()` - let cmd = 'git pull' + let cmd = 'git pull '.a:bundle.uri.' master:master' else let cmd = 'git clone '.a:bundle.uri.' '.shellescape(a:bundle.path()) endif