From 98a8151688eb01d134423f8476850103dc0a0731 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 16 Dec 2017 21:16:51 +0100 Subject: [PATCH] shellcheck fixes --- process/create-orders | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process/create-orders b/process/create-orders index 8dd595cf3..4740dec2f 100755 --- a/process/create-orders +++ b/process/create-orders @@ -16,9 +16,9 @@ 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 +find "orders.dir.$TURN" -maxdepth 1 -type f -printf "%T+\t%p\n" | sort | cut -f2 | while read -r do - cat "$REPLY" >> orders.$TURN + cat "$REPLY" >> "orders.$TURN" done lockfile -r3 -l120 orders.queue.lock