diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2019-02-11 23:30:53 -0800 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-02-13 23:30:14 +0100 |
commit | e3ba2e24cf3051fcf59fa5b18f21ff84e7f94f5e (patch) | |
tree | 2cc80eb4570f5e8f5871abcc37f8bfb86cce27d4 | |
parent | f4b2793bdfbb279defa5afa5b8ff7d409aae0e5f (diff) | |
download | Nim-e3ba2e24cf3051fcf59fa5b18f21ff84e7f94f5e.tar.gz |
fix travis: add set -e in script (#10631)
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 7ab45b1c7..c202a1654 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,10 +45,12 @@ before_script: - set +e # prevents breaking after_failure script: + - set -e - echo "travis_fold:start:nim_c_koch" - nim c koch - echo "travis_fold:end:nim_c_koch" - ./koch runCI + - set +e before_deploy: # Make https://nim-lang.github.io/Nim work the same as https://nim-lang.github.io/Nim/overview.html |