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
This commit is contained in:
gmarik 2011-03-06 17:21:45 -06:00
parent fb77c082e6
commit de308ff406

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