diff options
author | James Rowe <jroweboy@gmail.com> | 2016-06-30 19:59:32 +0200 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2016-08-05 01:16:16 +0200 |
commit | a976c2e3ba146df2fda9293c6fce9e11d96ac038 (patch) | |
tree | d634a074059cbe7385843c9f9ad176acff64460e /.travis-deps.sh | |
parent | Input GUI: Add tab to remap controls (#1900) (diff) | |
download | yuzu-a976c2e3ba146df2fda9293c6fce9e11d96ac038.tar yuzu-a976c2e3ba146df2fda9293c6fce9e11d96ac038.tar.gz yuzu-a976c2e3ba146df2fda9293c6fce9e11d96ac038.tar.bz2 yuzu-a976c2e3ba146df2fda9293c6fce9e11d96ac038.tar.lz yuzu-a976c2e3ba146df2fda9293c6fce9e11d96ac038.tar.xz yuzu-a976c2e3ba146df2fda9293c6fce9e11d96ac038.tar.zst yuzu-a976c2e3ba146df2fda9293c6fce9e11d96ac038.zip |
Diffstat (limited to '.travis-deps.sh')
-rwxr-xr-x | .travis-deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis-deps.sh b/.travis-deps.sh index 10b69f5c4..aad9074bf 100755 --- a/.travis-deps.sh +++ b/.travis-deps.sh @@ -9,7 +9,7 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then export CXX=g++-6 mkdir -p $HOME/.local - curl -L http://www.cmake.org/files/v3.1/cmake-3.1.0-Linux-i386.tar.gz \ + curl -L http://www.cmake.org/files/v3.2/cmake-3.2.0-Linux-i386.tar.gz \ | tar -xz -C $HOME/.local --strip-components=1 ( @@ -21,6 +21,6 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then elif [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update > /dev/null # silence the very verbose output brew unlink cmake - brew install cmake31 qt5 sdl2 dylibbundler + brew install cmake qt5 sdl2 dylibbundler gem install xcpretty fi |