summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-08-07 19:20:27 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-08-07 19:20:27 +1000
commita1aa031252d039c4541ad3049469028cd739c78b (patch)
tree659c0dbb488aff208b1a6160dcd6b1370928aa42
parentc4f3637e217cef1521fa98f354a244888040f0b0 (diff)
revert to using bash instead of sh
-rw-r--r--gitcommands.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitcommands.go b/gitcommands.go
index ee0fd9a33..668254cb8 100644
--- a/gitcommands.go
+++ b/gitcommands.go
@@ -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) {