fix: ignore set pipefail errors when DOKKU_SHELL is set to sh

This commit is contained in:
Jose Diaz-Gonzalez
2021-03-25 20:10:41 -04:00
parent f3934a1732
commit 376d7bdac6

View File

@@ -26,7 +26,7 @@ func constructScript(command string, shell string, isHerokuishImage bool, isCnbI
return words
}
script := []string{"set -eo pipefail;"}
script := []string{"set -e;", "set -o pipefail || true;"}
if os.Getenv("DOKKU_TRACE") == "1" {
script = append(script, "set -x;")
}