cardano-docker/scripts/functions/wait_for_file

6 lines
85 B
Plaintext
Raw Normal View History

2021-02-13 15:19:38 +00:00
function wait_for_file {
FILE=$1
while [ ! -f ${FILE} ]; do sleep 1; done
}