From 3fe27089d96f0224041e9a2fa653f21d2601a20e Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 22 Aug 2020 15:35:21 -0600 Subject: [PATCH] Work around set -o pipefail --- scripts/docker-install-phase7.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docker-install-phase7.bash b/scripts/docker-install-phase7.bash index 68249e9..092c6ee 100755 --- a/scripts/docker-install-phase7.bash +++ b/scripts/docker-install-phase7.bash @@ -16,7 +16,7 @@ chmod -R a=u,go-w /opt/cmd/home-template mkdir -p /opt/elm mkdir elm-project pushd elm-project >/dev/null -yes | elm init +(yes || true) | elm init cat elm.json | jq '."source-directories" = ["."]' > /opt/elm/elm.json popd >/dev/null rm -rf elm-project