11 lines
216 B
Bash
Executable File
11 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$BUILD_TOOLS" = true ]; then
|
|
cd tgui && source ~/.nvm/nvm.sh && npm install && cd ..
|
|
fi;
|
|
|
|
if [ "$DM_MAPFILE" = "loadallmaps" ]; then
|
|
python tools/travis/template_dm_generator.py
|
|
fi;
|