We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
if
1 parent 5d62aa1 commit 31658e9Copy full SHA for 31658e9
.travis.yml
@@ -33,10 +33,10 @@ notifications:
33
# install dependencies (lua, luarocks, ...)
34
install:
35
- . .travis/install.sh
36
- - test "`uname -s`" = Linux && sudo apt-get update -qq || true
37
- - test "`uname -s`" = Linux && sudo apt-get install -qq libfltk1.3-dev || true
38
- - test "`uname -s`" = Darwin && brew update || true
39
- - test "`uname -s`" = Darwin && brew install fltk || true
+ - if [ "`uname -s`" = Linux ]; then sudo apt-get update -qq; fi
+ - if [ "`uname -s`" = Linux ]; then sudo apt-get install -qq libfltk1.3-dev; fi
+ - if [ "`uname -s`" = Darwin ]; then brew update; fi
+ - if [ "`uname -s`" = Darwin ]; then brew install fltk; fi
40
41
# build (and test?) the project
42
script:
0 commit comments