diff options
Diffstat (limited to 'tools/ci/scripts/runtests.sh')
-rwxr-xr-x | tools/ci/scripts/runtests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ci/scripts/runtests.sh b/tools/ci/scripts/runtests.sh index 60b12abb9..18bcd7512 100755 --- a/tools/ci/scripts/runtests.sh +++ b/tools/ci/scripts/runtests.sh @@ -35,7 +35,7 @@ while true; do if [[ $n -ge 3 ]]; then break fi - sleep 5s + sleep 5 n=$((n+1)) done @@ -54,6 +54,6 @@ while true; do if [[ $n -ge 1 ]]; then exit 0 fi - sleep 5s + sleep 5 n=$((n+1)) done |