Work around set -o pipefail

This commit is contained in:
Radon Rosborough 2020-08-22 15:35:21 -06:00
parent b580859ab2
commit 3fe27089d9
1 changed files with 1 additions and 1 deletions

View File

@ -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