summaryrefslogtreecommitdiff
path: root/scripts/clang-tidy-diff.sh
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2021-03-18 17:09:31 -0700
committerGitHub <noreply@github.com>2021-03-19 00:09:31 +0000
commit86f05289d8fb50875d58ed491380bb8b4097d4eb (patch)
tree14c3eac249ec7851773344d9b81b457b33d1a2ea /scripts/clang-tidy-diff.sh
parent2c14fc3c11052e1db1bac3beb8193b9f05e45412 (diff)
downloadbinaryen-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/clang-tidy-diff.sh')
-rwxr-xr-xscripts/clang-tidy-diff.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/clang-tidy-diff.sh b/scripts/clang-tidy-diff.sh
index 1bed470cd..230764abe 100755
--- a/scripts/clang-tidy-diff.sh
+++ b/scripts/clang-tidy-diff.sh
@@ -1,6 +1,7 @@
#!/bin/bash
set -o errexit
+set -o pipefail
if [ -n "$GITHUB_BASE_REF" ]; then
BRANCH="origin/$GITHUB_BASE_REF"