Browse Source

when pulling use remote uri; also merge defaults

v
gmarik 15 years ago
parent
commit
0debd50db3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim

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

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


Loading…
Cancel
Save