Browse Source

Merge 68aa67b224 into 5548a1a937

pull/912/merge
Chip Hogg 1 year ago
committed by GitHub
parent
commit
116f5f6819
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      autoload/vundle/installer.vim

+ 2
- 0
autoload/vundle/installer.vim View File

@ -392,6 +392,7 @@ func! s:make_sync_command(bang, bundle) abort
\ 'git remote set-url origin ' . vundle#installer#shellesc(a:bundle.uri),
\ 'git fetch',
\ 'git reset --hard origin/HEAD',
\ 'git submodule sync --recursive',
\ 'git submodule update --init --recursive',
\ ]
let cmd = join(cmd_parts, ' && ')
@ -408,6 +409,7 @@ func! s:make_sync_command(bang, bundle) abort
let cmd_parts = [
\ 'cd '.vundle#installer#shellesc(a:bundle.path()),
\ 'git pull',
\ 'git submodule sync --recursive',
\ 'git submodule update --init --recursive',
\ ]
let cmd = join(cmd_parts, ' && ')


Loading…
Cancel
Save