diff options
author | Sam Clegg <sbc@chromium.org> | 2021-03-18 17:09:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-19 00:09:31 +0000 |
commit | 86f05289d8fb50875d58ed491380bb8b4097d4eb (patch) | |
tree | 14c3eac249ec7851773344d9b81b457b33d1a2ea /scripts/emcc-tests.sh | |
parent | 2c14fc3c11052e1db1bac3beb8193b9f05e45412 (diff) | |
download | binaryen-86f05289d8fb50875d58ed491380bb8b4097d4eb.tar.gz binaryen-86f05289d8fb50875d58ed491380bb8b4097d4eb.tar.bz2 binaryen-86f05289d8fb50875d58ed491380bb8b4097d4eb.zip |
Add `-o pipefail` to shell scripts (#3706)
This means that if any command in a pipelines fails the whole
pipeline will also fail.
Diffstat (limited to 'scripts/emcc-tests.sh')
-rwxr-xr-x | scripts/emcc-tests.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/emcc-tests.sh b/scripts/emcc-tests.sh index ec3c5ec48..409ba256e 100755 --- a/scripts/emcc-tests.sh +++ b/scripts/emcc-tests.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash -set -e +set -o errexit +set -o pipefail mkdir -p emcc-build echo "emcc-tests: build:wasm" |