tests/testlib/wait-on-file
branchstable
changeset 44780 f727939f3513
parent 44744 23dd43d94f50
child 44818 9d7d53771e5f
--- a/tests/testlib/wait-on-file	Thu May 07 10:15:19 2020 +0200
+++ b/tests/testlib/wait-on-file	Thu May 07 15:00:33 2020 +0200
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #
 # wait up to TIMEOUT seconds until a WAIT_ON_FILE is created.
 #
@@ -22,13 +22,11 @@
     create="$3"
 fi
 
-if [ -n "$create" ];
-then
+if [ -n "$create" ]; then
     touch "$create"
     create=""
 fi
-while [ "$timer" -gt 0 ] && [ ! -f "$wait_on" ];
-do
+while [ "$timer" -gt 0 ] && [ ! -f "$wait_on" ]; do
     timer=$(( $timer - 1))
     sleep 0.01
 done