diff --git a/.travis.yml b/.travis.yml index 784183714b..f9ae9a82d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,9 +31,9 @@ matrix: - $HOME/.nuget/packages install: - - if [ $DMAPI = true ]; then build/install_byond.sh fi - - if [ $DMAPI = false ]; then nuget restore tgstation-server.sln fi + - if [ $DMAPI = true ]; then build/install_byond.sh; fi + - if [ $DMAPI = false ]; then nuget restore tgstation-server.sln; fi script: - - if [ $DMAPI = true ]; then tests/DMAPI/build_byond.sh || travis_terminate 1 fi - - if [ $DMAPI = false ]; then build/test_core.sh fi + - if [ $DMAPI = true ]; then tests/DMAPI/build_byond.sh || travis_terminate 1; fi + - if [ $DMAPI = false ]; then build/test_core.sh; fi