Browse Source

fix err

pull/63/head
gmarik 15 years ago
parent
commit
3849b5b8a6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim

+ 1
- 1
autoload/vundle/installer.vim 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


Loading…
Cancel
Save