Fix shellcheck for is_sh check

This commit is contained in:
Gilad Peleg 2017-02-25 22:20:17 +02:00 committed by GitHub
parent 6fb14d624b
commit 32a3754915

View File

@ -47,7 +47,7 @@ function! s:GetShell(buf) " {{{2
let sh = 'ksh' let sh = 'ksh'
elseif syntastic#util#bufRawVar(a:buf, 'is_bash', 0) elseif syntastic#util#bufRawVar(a:buf, 'is_bash', 0)
let sh = 'bash' let sh = 'bash'
elseif syntastic#util#RawVar(a:buf, 'is_sh', 0) elseif syntastic#util#bufRawVar(a:buf, 'is_sh', 0)
let sh = 'sh' let sh = 'sh'
endif endif
endif endif