diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2018-06-08 21:09:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-08 21:09:36 +0100 |
commit | caaaa8731a55f18f9150ae171afe5bc5956a7ea1 (patch) | |
tree | 71baf921ceb6ecb24ef2651dd2301951501ee87e | |
parent | 3e799d7876110d970c365d61c05e887729488e2f (diff) | |
parent | c9a8ada722a945b6de8c4c145ade25526545a4cc (diff) | |
download | Nim-caaaa8731a55f18f9150ae171afe5bc5956a7ea1.tar.gz |
Merge pull request #7962 from Yardanico/test-ci
Fixed Travis CI for macOS
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index a3fa3f1da..38e1eba28 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,8 @@ before_install: before_script: - set -e + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then unset -f cd; fi + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then shell_session_update() { :; }; fi - git clone --depth 1 https://github.com/nim-lang/csources.git - cd csources - sh build.sh |