Skip to content

Commit

Permalink
use sh instead of bash
Browse files Browse the repository at this point in the history
  • Loading branch information
andrestc committed Mar 29, 2018
1 parent 464c7ac commit 3404b14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func execScript(cmds []string, envs []bind.EnvVar, w io.Writer, fs Filesystem, e
formatedEnvs = append(formatedEnvs, os.Environ()...)
for _, cmd := range cmds {
execOpts := exec.ExecuteOptions{
Cmd: "/bin/bash",
Cmd: "/bin/sh",
Args: []string{"-lc", cmd},
Dir: workingDir,
Envs: formatedEnvs,
Expand Down

0 comments on commit 3404b14

Please sign in to comment.