summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index a0b965f7..0b0973db 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,9 +5,13 @@ os:
install:
- |-
( cd
- git clone -b v0.5.0 --depth=1 https://github.com/gbdev/rgbds
- sudo make -C rgbds install
- rm -rf rgbds
+ if [ $TRAVIS_OS_NAME = linux ]; then
+ git clone -b v0.5.0 --depth=1 https://github.com/gbdev/rgbds;
+ sudo make -C rgbds install;
+ rm -rf rgbds;
+ else
+ brew install rgbds;
+ fi
)
before_script:
- |-