diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-09-02 18:47:08 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-09-03 14:26:14 +0100 |
commit | 97e87ce0bed503b3e13b4d161e25bed1e47cd31e (patch) | |
tree | 5572c8d697f34cc39a175497da2e003e7b33cbcd | |
parent | 3f14e3f225c442ba8c274214c5dad3195d5cb7c3 (diff) | |
download | klee-97e87ce0bed503b3e13b4d161e25bed1e47cd31e.tar.gz |
Change the way bash is upgraded on macOS.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2c70284f..8f8933a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -145,7 +145,7 @@ cache: directories: - $HOME/Library/Caches/Homebrew before_install: - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew install bash ; fi + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export HOMEBREW_NO_INSTALL_CLEANUP=1 && brew update && brew install --verbose --debug bash; fi script: # Build KLEE and run tests |