From 4a63f2672b2bcd0f254c562d1e62a398a81ebd89 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 --- act/model/workflow.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/act/model/workflow.go b/act/model/workflow.go index 842b9db0..41a7167c 100644 --- a/act/model/workflow.go +++ b/act/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":