From dce0c00773502129df0b02c8d80e98d179ca955f Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Fri, 14 May 2021 13:29:05 +0300 Subject: [PATCH] Minor fix --- clover/src/waitfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clover/src/waitfile b/clover/src/waitfile index 2052e42e..ac02cc17 100755 --- a/clover/src/waitfile +++ b/clover/src/waitfile @@ -3,7 +3,7 @@ # $ ./waitfile # wait until appears and then invoke with -echo "wait for file $1 to ${@:2}" +echo "wait for file $1" while [ ! -e "$1" ]; do sleep 1; done; -echo "file $1 appeared, run ${@:2}" +echo "file $1 appeared" "${@:2}"