1
0
Fork 0

Add qutes to scripts

This commit is contained in:
Tycho 2014-05-10 13:18:40 +01:00
parent 6e6d7c1159
commit 189c7529e9
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ compiler:
- clang
before_install:
- if [ $TRAVIS_MCSERVER_BUILD_TYPE == "COVERAGE" ]; then sudo pip install cpp_coveralls; fi
- if [ "$TRAVIS_MCSERVER_BUILD_TYPE" == "COVERAGE" ]; then sudo pip install cpp_coveralls; fi
# Build MCServer
script: ./CIbuild.sh

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
if [ $TRAVIS_MCSERVER_BUILD_TYPE == "COVERAGE" ]
if [ "$TRAVIS_MCSERVER_BUILD_TYPE" == "COVERAGE" ]
then
coveralls --exclude lib --exclude tests
fi