diff options
author | Andrei Karas <akaras@inbox.ru> | 2020-06-04 11:58:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-06-04 13:33:17 +0300 |
commit | 773f91f06b934347494149d6900ec4a67389a3a2 (patch) | |
tree | 35480d68cf150b930ecbaa2be9ab40486bafb6b0 /tools/ci/scripts/runtests.sh | |
parent | a114b38663160a1e325884f349a5c5727229177b (diff) | |
download | ManaVerse-773f91f06b934347494149d6900ec4a67389a3a2.tar.gz ManaVerse-773f91f06b934347494149d6900ec4a67389a3a2.tar.bz2 ManaVerse-773f91f06b934347494149d6900ec4a67389a3a2.tar.xz ManaVerse-773f91f06b934347494149d6900ec4a67389a3a2.zip |
Remove s from command sleep in run scripts in ci
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 |