forked from github/server
18 lines
297 B
Bash
Executable File
18 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
|
|
GAME="$1"
|
|
TURN="$2"
|
|
|
|
if [ ! -d "$ERESSEA/game-$GAME" ] ; then
|
|
echo "No such game: $GAME"
|
|
exit 1
|
|
fi
|
|
|
|
cd "$ERESSEA/game-$GAME" || exit
|
|
|
|
echo "running turn $TURN, game $GAME"
|
|
"$ERESSEA/server/bin/eressea" -t "$TURN" run-turn.lua
|
|
mkdir -p log
|
|
ln -f eressea.log "log/eressea.log.$TURN"
|
|
|