mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 18:33:36 +00:00
12 lines
290 B
Bash
12 lines
290 B
Bash
#!/bin/bash
|
|
|
|
#nb: must be bash to support shopt globstar
|
|
set -e
|
|
shopt -s globstar
|
|
|
|
if [ "$BUILD_TOOLS" = false ]; then
|
|
(! grep 'step_[xy]' _maps/**/*.dmm)
|
|
source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup
|
|
tools/travis/dm.sh -M${DM_MAPFILE} tgstation.dme
|
|
fi;
|