forked from github/server
do not include the database when creating order file the old way
This commit is contained in:
parent
ef90806ca0
commit
182d7df480
|
@ -17,7 +17,7 @@ else
|
||||||
mkdir -p orders.dir
|
mkdir -p orders.dir
|
||||||
fi
|
fi
|
||||||
rm -f "orders.$TURN"
|
rm -f "orders.$TURN"
|
||||||
find "orders.dir.$TURN" -maxdepth 1 -type f -printf "%T+\t%p\n" | sort | cut -f2 | while read -r
|
find "orders.dir.$TURN" -maxdepth 1 -name "turn-*" -type f -printf "%T+\t%p\n" | sort | cut -f2 | while read -r
|
||||||
do
|
do
|
||||||
tr -d '\r' < "$REPLY" >> "orders.$TURN"
|
tr -d '\r' < "$REPLY" >> "orders.$TURN"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue