diff --git a/pkg/model/workflow.go b/pkg/model/workflow.go index 842b9db..41a7167 100644 --- a/pkg/model/workflow.go +++ b/pkg/model/workflow.go @@ -259,7 +259,7 @@ func (s *Step) ShellCommand() string { switch s.Shell { case "", "bash": - shellCommand = "bash --noprofile --norc -eo pipefail {0}" + shellCommand = "bash --noprofile --norc -e {0}" case "pwsh": shellCommand = "pwsh -command \"& '{0}'\"" case "python":