diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2016-09-20 21:25:15 -0700 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2016-09-20 21:25:15 -0700 |
commit | fcec20c9ffd2e32de327dc87967a43a893806312 (patch) | |
tree | 2bed4adf32734d1784de3f6f187652bbd9f4d73f | |
parent | 8bf09b5302dc7717477f6c3b5c1f0ea8f2c80717 (diff) |
Travis: Fix OS X build
Probably due to additional Travis caching, cmake is now already
installed when the script runs. This causes the unlink to remove the
symlink to the executable, which is then not re-added by the install
(since it's already installed).
-rwxr-xr-x | .travis-deps.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis-deps.sh b/.travis-deps.sh index 567a2543d..8538098c1 100755 --- a/.travis-deps.sh +++ b/.travis-deps.sh @@ -28,7 +28,6 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then fi elif [ "$TRAVIS_OS_NAME" = "osx" ]; then - brew update > /dev/null # silence the very verbose output - brew unlink cmake || true + brew update brew install cmake qt5 sdl2 dylibbundler fi |