From: torque Date: Sat, 24 Sep 2016 20:07:34 +0000 (-0700) Subject: CI: Don't fail on MacOS if brew cannot remove libtool. X-Git-Tag: 0.13.4~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16d8d586d5aa4c4501ff092668e73b405821abb6;p=libass CI: Don't fail on MacOS if brew cannot remove libtool. This is the better option, as it won't break the CI script if travis ends up removing the preinstalled libtool bundle for whatever reason. --- diff --git a/.travis.yml b/.travis.yml index 68a4ff2..c441a1a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ branches: before_install: - (sudo apt-get update || brew update) - - (sudo apt-get install -y fontconfig libfribidi-dev yasm || (brew uninstall libtool && brew install fontconfig freetype fribidi libtool yasm)) && ./autogen.sh && ./configure + - (sudo apt-get install -y fontconfig libfribidi-dev yasm || (brew uninstall libtool; brew install fontconfig freetype fribidi libtool yasm)) && ./autogen.sh && ./configure script: - make -j4