diff options
author | Jason Gross <jgross@mit.edu> | 2019-12-17 17:04:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-17 17:04:00 -0500 |
commit | 099e61a8b56f45cb7d84d7029a14d3d774b31029 (patch) | |
tree | 50002914d833f161b9d359a4a83df17866299f0f | |
parent | 63b5253262fb180de320f0155bb17503748743e4 (diff) |
Try using brew upgrade in Travis
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 1f768f6d..c9fb6537 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,8 +20,7 @@ before_install: - if command -v apt-get &>/dev/null; then sudo apt-get update -qq; fi - if command -v apt-get &>/dev/null; then sudo apt-get install -y mlton libicu-dev; fi - if command -v brew &>/dev/null; then brew update; fi - - if command -v brew &>/dev/null; then brew uninstall libtool; fi - - if command -v brew &>/dev/null; then brew install libtool; fi + - if command -v brew &>/dev/null; then brew upgrade libtool; fi - if command -v brew &>/dev/null; then brew install openssl mlton icu4c; fi - if command -v brew &>/dev/null; then export ICU_INCLUDES=-I"`brew --prefix icu4c`/include"; fi - if command -v brew &>/dev/null; then export ICU_LIBS=-L"`brew --prefix icu4c`/lib"; fi |