From 60669808a4969f11b3064ae1ff457a45ce2f0d24 Mon Sep 17 00:00:00 2001 From: Andrew Gee Date: Fri, 12 Feb 2021 16:28:26 +0000 Subject: [PATCH] Removed pipefail from bash shell execution to match GitHub Actions (#529) fixes #528 Co-authored-by: Hugh Lunt Co-authored-by: Hugh Lunt --- pkg/model/workflow.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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":