1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-26 09:00:57 +02:00

revert to using bash instead of sh

This commit is contained in:
Jesse Duffield 2018-08-07 19:20:27 +10:00
parent c4f3637e21
commit a1aa031252

View File

@ -117,7 +117,7 @@ func platformShell() (string, string) {
if runtime.GOOS == "windows" {
return "cmd", "/c"
}
return "sh", "-c"
return "bash", "-c"
}
func runDirectCommand(command string) (string, error) {