s2-dungeonsandexploits/init.sh

14 lines
239 B
Bash
Executable File

#!/bin/bash
set -e
here="$(realpath "$(dirname "$0")")"
cd "$here"
echo "---------- build game ----------"
"./unity/build.sh"
echo "---------- run flask init.sh ----------"
"./flask/init.sh"
cd "$here"
echo "---------- done ----------"