2020-04-30 17:08:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-07-07 08:24:50 +00:00
|
|
|
# Update capturetheflag
|
|
|
|
git pull
|
|
|
|
|
2019-11-23 12:07:36 +00:00
|
|
|
# Update all submodules
|
|
|
|
git submodule update --init --recursive
|
2019-07-07 08:24:50 +00:00
|
|
|
|
|
|
|
# Run post-processing actions for maps
|
|
|
|
./setup_maps.sh
|
|
|
|
|
|
|
|
# Run build.sh
|
2018-01-02 20:56:20 +00:00
|
|
|
./build.sh ../games/capturetheflag
|
2020-04-30 17:08:01 +00:00
|
|
|
|
2020-05-31 17:39:53 +00:00
|
|
|
# Queue restart
|
2020-04-30 17:08:01 +00:00
|
|
|
if [[ -d ../worlds/ctf ]]; then
|
|
|
|
touch ../worlds/ctf/queue_restart.txt
|
|
|
|
fi
|