Use 'sh' as shell instead of configurable '/bin/sh'.

sh isn't always at /bin/sh, e.g. on Android or Termux, but it is always
on the path.

See #360.
This commit is contained in:
Andy Stewart
2016-09-30 10:28:29 +01:00
parent 402257f920
commit 4f9c5b0f3e
3 changed files with 3 additions and 4 deletions

View File

@@ -187,7 +187,7 @@ function! gitgutter#utility#use_known_shell() abort
let s:shell = &shell
let s:shellcmdflag = &shellcmdflag
let s:shellredir = &shellredir
let &shell = g:gitgutter_sh
let &shell = 'sh'
set shellcmdflag=-c
set shellredir=>%s\ 2>&1
endif