diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-11-20 20:20:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-20 20:20:11 +0100 |
commit | 85761dd4269bff17e7607020bbb5ed9994afca61 (patch) | |
tree | 4664e8a053ccff32c8543a741315745faf009c7f | |
parent | 016ebb4185946b552e3dd005ec304a3961a7e51a (diff) | |
download | rneovim-85761dd4269bff17e7607020bbb5ed9994afca61.tar.gz rneovim-85761dd4269bff17e7607020bbb5ed9994afca61.tar.bz2 rneovim-85761dd4269bff17e7607020bbb5ed9994afca61.zip |
CI/Travis/macOS: Fix "brew reinstall" invocation (#9259)
"-s" is "--build-from-source", an option to `brew install`. This was
never a documented option per `brew help reinstall`. It's not clear why
we were using this option, but it now fails the CI build.
ref https://github.com/Homebrew/brew/pull/5274
ref https://github.com/Homebrew/brew/issues/1656
-rwxr-xr-x | ci/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/install.sh b/ci/install.sh index 2cb8e78e67..4aefe22fb5 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -10,7 +10,7 @@ fi if [[ "${TRAVIS_OS_NAME}" == osx ]]; then brew install ninja brew install gettext - brew reinstall -s libtool + brew reinstall libtool brew install ccache export PATH="/usr/local/opt/ccache/libexec:$PATH" fi |