diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index dc58172..4b30163 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -132,12 +132,11 @@ func! s:sync(bang, bundle) abort endf func! s:system(cmd) abort - let output = system(a:cmd) - call s:log(output) - return output + return s:log(system(a:cmd)) endf func! s:log(str) abort if !exists('g:vundle_log') | let g:vundle_log = [] | endif call add(g:vundle_log, a:str) + return a:str endf