From ab89ecd0e2eab1d25756a1797ef3c10fa48cd122 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Wed, 5 Sep 2018 11:16:02 -0400 Subject: [PATCH] Eat your semicolons kids --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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