Removed pipefail from bash shell execution to match GitHub Actions (#529)

fixes #528

Co-authored-by: Hugh Lunt <[email protected]>

Co-authored-by: Hugh Lunt <[email protected]>
This commit is contained in:
Andrew Gee
2021-02-12 08:28:26 -08:00
committed by GitHub
co-authored by Hugh Lunt
parent 661aa08235
commit 60669808a4
+1 -1
View File
@@ -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":