From 32052fd06fdb31010fd376c0e704be74826b3fec Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 9 Jan 2018 22:48:46 -0800 Subject: [PATCH] Fixes BUILD_TESTING logic being inverted (#34201) --- tools/travis/build_byond.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/travis/build_byond.sh b/tools/travis/build_byond.sh index 45e4ce7641..286fbf68d2 100755 --- a/tools/travis/build_byond.sh +++ b/tools/travis/build_byond.sh @@ -24,8 +24,8 @@ if [ "$BUILD_TOOLS" = false ]; then source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup if [ "$BUILD_TESTING" = true ]; then - tools/travis/dm.sh -DTRAVISBUILDING tgstation.dme - else tools/travis/dm.sh -DTRAVISBUILDING -DTRAVISTESTING -DALL_MAPS tgstation.dme + else + tools/travis/dm.sh -DTRAVISBUILDING tgstation.dme fi; fi;