Skip to content
Snippets Groups Projects
Commit 77aa7ea2 authored by Scott Sanders's avatar Scott Sanders
Browse files

Negate the shell_error value during return

parent 33cceff0
No related branches found
No related tags found
No related merge requests found
......@@ -177,7 +177,7 @@ endfunction
" True for git v1.7.2+.
function! gitgutter#utility#git_supports_command_line_config_override() abort
call system(g:gitgutter_git_executable.' -c foo.bar=baz --version')
return v:shell_error == 0
return !v:shell_error
endfunction
function! gitgutter#utility#stringify(list) abort
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment