Browse Source

remove require guard

- was beaking case when bundle is already installed(downloaded) but not
configured
- should not affect other cases as adding require is pretty safe
pull/10/head
gmarik 15 years ago
parent
commit
de308ff406
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim

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

@ -59,7 +59,7 @@ endf
func! s:install(bang, bundle)
let synced = s:sync(a:bang, a:bundle)
call s:log(a:bundle.name.' '.(synced ? '': ' already').' installed')
if synced | call vundle#config#require(a:bundle) | endif
call vundle#config#require(a:bundle)
endf
" TODO: make it pause after output in console mode


Loading…
Cancel
Save