diff options
author | teor <teor@torproject.org> | 2019-12-02 11:58:54 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-12-02 11:58:54 +1000 |
commit | a58a9572fa4df2827895c43a13b389aa900f0d66 (patch) | |
tree | 18496f1f1f41c0b082a29e8e246c3558a805553b /.travis.yml | |
parent | 96e620caaf11909bce704f3c55187a139595a8e9 (diff) | |
download | tor-a58a9572fa4df2827895c43a13b389aa900f0d66.tar.gz tor-a58a9572fa4df2827895c43a13b389aa900f0d66.zip |
Travis: Set pipefail
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 5d5bc330d6..791ca97dfa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -165,6 +165,8 @@ addons: osx_image: xcode11.2 before_install: + ## Set pipefail: we use pipes + - set -o pipefail || echo "pipefail failed" ## Create empty rust directories for non-Rust builds, so caching succeeds - if [[ "$RUST_OPTIONS" == "" ]]; then mkdir -p $HOME/.cargo $TRAVIS_BUILD_DIR/src/rust/target; fi |