Skip to content
Snippets Groups Projects
Commit fcec20c9 authored by Yuri Kunde Schlesner's avatar Yuri Kunde Schlesner
Browse files

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).
parent 8bf09b53
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment