travis: add missing semicolon in if-then statement.
authorKim Kulling <kim.kulling@googlemail.com>
Fri, 21 Jul 2017 11:21:31 +0000 (13:21 +0200)
committerKim Kulling <kim.kulling@googlemail.com>
Fri, 21 Jul 2017 11:21:31 +0000 (13:21 +0200)
.travis.yml

index 9611043..452c141 100644 (file)
@@ -4,7 +4,7 @@ language: cpp
 before_install:
   - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq && sudo apt-get install cmake && sudo apt-get install cmake python3 && sudo apt-get install -qq freeglut3-dev libxmu-dev libxi-dev ; echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca- ; fi
   - 'if [ "$TRAVIS_OS_NAME" = "osx" ];  then
-       if brew ls versions cmake > /dev/null/ then
+       if brew ls versions cmake > /dev/null/; then
        else  
          brew install cmake;
        fi