summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-05-10 14:12:57 +0200
committerTycho <work.tycho+git@gmail.com>2014-05-10 14:12:57 +0200
commit5be9bac448e05bd5f352ec6df2604ee7631d5e33 (patch)
treeb5f39ea9431494eaf188cedc65538b67e9a5fa1e
parentFixed paths (diff)
downloadcuberite-5be9bac448e05bd5f352ec6df2604ee7631d5e33.tar
cuberite-5be9bac448e05bd5f352ec6df2604ee7631d5e33.tar.gz
cuberite-5be9bac448e05bd5f352ec6df2604ee7631d5e33.tar.bz2
cuberite-5be9bac448e05bd5f352ec6df2604ee7631d5e33.tar.lz
cuberite-5be9bac448e05bd5f352ec6df2604ee7631d5e33.tar.xz
cuberite-5be9bac448e05bd5f352ec6df2604ee7631d5e33.tar.zst
cuberite-5be9bac448e05bd5f352ec6df2604ee7631d5e33.zip
-rw-r--r--.travis.yml2
-rw-r--r--uploadCoverage.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 2d0c0a337..0da5487f7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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
diff --git a/uploadCoverage.sh b/uploadCoverage.sh
index 3a566d990..6ea5e481a 100644
--- a/uploadCoverage.sh
+++ b/uploadCoverage.sh
@@ -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