From 4c817b9bd5de9ceefd8f56218fc10fc61a577f60 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Wed, 23 Nov 2016 18:23:17 +0000 Subject: [PATCH] travis: No longer necessary to install latest cmake from homebrew on macOS --- .travis/deps.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis/deps.sh b/.travis/deps.sh index da613992..5a825bff 100755 --- a/.travis/deps.sh +++ b/.travis/deps.sh @@ -12,7 +12,4 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then mkdir -p $HOME/.local curl -L https://cmake.org/files/v3.4/cmake-3.4.1-Linux-i386.tar.gz \ | tar -xz -C $HOME/.local --strip-components=1 -elif [ "$TRAVIS_OS_NAME" = "osx" ]; then - brew update > /dev/null # silence the very verbose output - brew install cmake fi