From 85761dd4269bff17e7607020bbb5ed9994afca61 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Tue, 20 Nov 2018 20:20:11 +0100 Subject: 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 --- ci/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit