From 42284fd11b759c2695be633fafeb289960d32600 Mon Sep 17 00:00:00 2001 From: Cirr Date: Wed, 10 May 2017 15:18:38 +0100 Subject: [PATCH] fix false positives on Travis CI builds when using object paths ending in /turf --- tools/travis/build_byond.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/travis/build_byond.sh b/tools/travis/build_byond.sh index 54add5c78d3..a26fb14509d 100755 --- a/tools/travis/build_byond.sh +++ b/tools/travis/build_byond.sh @@ -9,7 +9,7 @@ if [ "$BUILD_TOOLS" = false ]; then echo "step_[xy] variables detected in maps, please remove them." exit 1 fi; - if grep '/turf\s*[,\){]' _maps/**/*.dmm; then + if grep '\W\/turf\s*[,\){]' _maps/**/*.dmm; then echo "base /turf path use detected in maps, please replace with proper paths." exit 1 fi;