This commit is contained in:
gmarik 2011-07-15 01:58:34 -05:00
parent b75036a8e3
commit 3849b5b8a6

View File

@ -94,7 +94,7 @@ func! s:install(bang, bundles) abort
let [installed, errors] = [[],[]]
for b in a:bundles
let err_code, status = s:sync(a:bang, b)
let [err_code, status] = s:sync(a:bang, b)
if 0 == err_code
if 'ok' == status | call add(installed, b) | endif
else