forked from github/server
shellcheck fixes
This commit is contained in:
parent
0f014153c0
commit
98a8151688
|
@ -16,9 +16,9 @@ else
|
||||||
mv orders.dir "orders.dir.$TURN"
|
mv orders.dir "orders.dir.$TURN"
|
||||||
mkdir -p orders.dir
|
mkdir -p orders.dir
|
||||||
fi
|
fi
|
||||||
find orders.dir.$TURN -maxdepth 1 -type f -printf "%T+\t%p\n" | sort | cut -f2 | while read
|
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
|
cat "$REPLY" >> "orders.$TURN"
|
||||||
done
|
done
|
||||||
|
|
||||||
lockfile -r3 -l120 orders.queue.lock
|
lockfile -r3 -l120 orders.queue.lock
|
||||||
|
|
Loading…
Reference in New Issue