diff options
author | archshift <gh@archshift.com> | 2015-03-07 00:54:09 +0100 |
---|---|---|
committer | archshift <gh@archshift.com> | 2015-03-17 02:09:20 +0100 |
commit | 6cc1a0723583817d1c1bad13db5167c07aa84aa2 (patch) | |
tree | b4fd54fd6347e6d114819536bfd7fe8f95c68ecc /.travis-deps.sh | |
parent | Merge pull request #629 from archshift/lcdfb (diff) | |
download | yuzu-6cc1a0723583817d1c1bad13db5167c07aa84aa2.tar yuzu-6cc1a0723583817d1c1bad13db5167c07aa84aa2.tar.gz yuzu-6cc1a0723583817d1c1bad13db5167c07aa84aa2.tar.bz2 yuzu-6cc1a0723583817d1c1bad13db5167c07aa84aa2.tar.lz yuzu-6cc1a0723583817d1c1bad13db5167c07aa84aa2.tar.xz yuzu-6cc1a0723583817d1c1bad13db5167c07aa84aa2.tar.zst yuzu-6cc1a0723583817d1c1bad13db5167c07aa84aa2.zip |
Diffstat (limited to '.travis-deps.sh')
-rwxr-xr-x[-rw-r--r--] | .travis-deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis-deps.sh b/.travis-deps.sh index bd09da0d0..f8074fb91 100644..100755 --- a/.travis-deps.sh +++ b/.travis-deps.sh @@ -4,7 +4,7 @@ set -e set -x #if OS is linux or is not set -if [ "$TRAVIS_OS_NAME" = linux -o -z "$TRAVIS_OS_NAME" ]; then +if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y sudo apt-get -qq update sudo apt-get -qq install g++-4.9 xorg-dev libglu1-mesa-dev libxcursor-dev @@ -23,7 +23,7 @@ if [ "$TRAVIS_OS_NAME" = linux -o -z "$TRAVIS_OS_NAME" ]; then sudo mkdir -p /usr/local curl http://www.cmake.org/files/v2.8/cmake-2.8.11-Linux-i386.tar.gz \ | sudo tar -xz -C /usr/local --strip-components=1 -elif [ "$TRAVIS_OS_NAME" = osx ]; then +elif [ "$TRAVIS_OS_NAME" = "osx" ]; then brew tap homebrew/versions brew install qt5 glfw3 pkgconfig fi |