Use 'new' & 'updated' to build updated_bundle list

Distinction between `new` and `updated` simplifies the process
of adding a bundle to the updated_bundle list.
This commit is contained in:
Matt Furden
2012-04-18 01:19:25 -07:00
parent 8c4e0a4a31
commit e999886db5
2 changed files with 4 additions and 10 deletions

View File

@@ -227,7 +227,7 @@ func! s:sync(bang, bundle) abort
return 'todate'
endif
call s:add_to_updated_bundle_list(a:bundle)
call add(g:updated_bundles, a:bundle)
return 'updated'
endf
@@ -240,14 +240,6 @@ func! s:add_update_tag(bundle) abort
\ ' && git tag -a vundle_update -m "Last Vundle Update" -f')
endfunc
func! s:add_to_updated_bundle_list(bundle) abort
let current_commit = s:system('cd '.shellescape(a:bundle.path()).' && git rev-list HEAD')
let initial_commit = s:system('cd '.shellescape(a:bundle.path()).' && git rev-list vundle_update')
if (0 == v:shell_error) && (initial_commit != current_commit)
call add(g:updated_bundles, a:bundle)
endif
endfunc
func! s:log(str) abort
let fmt = '%y%m%d %H:%M:%S'
call add(g:vundle_log, '['.strftime(fmt).'] '.a:str)