Remove redundant checks of git --version in Neovim installer

Related: #445
This commit is contained in:
Junegunn Choi 2016-03-12 12:34:57 +09:00
parent c463c9fe83
commit 820cc63569

View File

@ -288,8 +288,9 @@ function! s:version_requirement(val, min)
endfunction
function! s:git_version_requirement(...)
let s:git_version = get(s:, 'git_version',
\ map(split(split(s:system('git --version'))[-1], '\.'), 'str2nr(v:val)'))
if !exists('s:git_version')
let s:git_version = map(split(split(s:system('git --version'))[-1], '\.'), 'str2nr(v:val)')
endif
return s:version_requirement(s:git_version, a:000)
endfunction