forked from github/server
c998770a88
this addresses the problem leading to bug 2394. Conflicts: process/create-orders
30 lines
554 B
Bash
Executable file
30 lines
554 B
Bash
Executable file
#!/bin/bash
|
|
|
|
GAME=$1
|
|
TURN=$2
|
|
|
|
if [ ! -d $ERESSEA/game-$GAME ] ; then
|
|
echo "No such game: $GAME"
|
|
exit 1
|
|
fi
|
|
|
|
cd $ERESSEA/game-$GAME
|
|
|
|
if [ -d orders.dir.$TURN ]; then
|
|
echo "orders.dir.$TURN already exists"
|
|
else
|
|
mv orders.dir orders.dir.$TURN
|
|
mkdir -p orders.dir
|
|
fi
|
|
find "orders.dir.$TURN" -maxdepth 1 -type f -printf "%T+\t%p\n" | sort | cut -f2 | while read
|
|
do
|
|
cat "$REPLY" >> "orders.$TURN"
|
|
done
|
|
|
|
lockfile -r3 -l120 orders.queue.lock
|
|
if [ -e orders.queue ] ; then
|
|
mv orders.queue "orders.dir.$TURN/orders.queue"
|
|
fi
|
|
rm -f orders.queue.lock
|
|
|
|
|