diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 054f5a2..730db3a 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -240,6 +240,9 @@ endf func! s:add_to_updated_bundles(out, bundle) abort let git_pull_shas = matchlist(a:out, 'Updating \(\w\+\)..\(\w\+\)') + + if (empty(git_pull_shas)) | return | endif + let initial_sha = git_pull_shas[1] let updated_sha = git_pull_shas[2]