aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 66ca42e..d597e06 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,10 +17,10 @@ addons:
- cmake
- yasm
before_install:
- - [ $TRAVIS_OS_NAME = osx ] && brew install yasm
+ - if [ $TRAVIS_OS_NAME == osx ]; then brew install yasm; fi
before_script:
- - cmake . -DSUBHOOK_FORCE_32BIT=`([ $ARCH = x86 ] && echo ON) || echo OFF`
+ - cmake . -DSUBHOOK_FORCE_32BIT=`([ $ARCH = x86 ] && echo 'ON') || echo 'OFF'`
script:
- make
- make test