diff options
author | Adam Chlipala <adam@chlipala.net> | 2019-12-20 10:26:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-20 10:26:56 -0500 |
commit | a837bf5d83d27c49dc8c1fdb4782a3a8b037d5ee (patch) | |
tree | a8518312cbcfbd4beb30b32226544f614c7f8586 | |
parent | 58cb40ccda23b9424cc4cfcbd70fb94ae18665db (diff) | |
parent | 099e61a8b56f45cb7d84d7029a14d3d774b31029 (diff) |
Merge pull request #191 from JasonGross/patch-2
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 |