CR change

This commit is contained in:
borisborshevsky 2017-03-23 11:43:53 +02:00
parent de86254248
commit dd4381eda3
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ func (c *customCommand) run() error {
switch runtime.GOOS {
case "darwin", "linux":
args := append([]string{c.Command}, c.Args...)
cmd = exec.Command("bash", "-c", strings.Join(args, " "))
cmd = exec.Command("sh", "-c", strings.Join(args, " "))
case "windows":
args := append([]string{c.Command}, c.Args...)
cmd = exec.Command("cmd", "/C", strings.Join(args, " "))