forked from github/server
BUG 2528: fix windows newlines
This commit is contained in:
parent
7d9280b463
commit
0f95e77a7b
|
@ -19,7 +19,7 @@ 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 -type f -printf "%T+\t%p\n" | sort | cut -f2 | while read -r
|
||||||
do
|
do
|
||||||
cat "$REPLY" >> "orders.$TURN"
|
tr -d '\r' < "$REPLY" >> "orders.$TURN"
|
||||||
done
|
done
|
||||||
|
|
||||||
lockfile -r3 -l120 orders.queue.lock
|
lockfile -r3 -l120 orders.queue.lock
|
||||||
|
|
Loading…
Reference in New Issue