mirror of
https://github.com/richb-hanover/OpenWrtScripts.git
synced 2026-03-30 10:44:32 +02:00
Fix for POSIX compliant shell
On some POSIX compliant sh shells, sleep command doesn't accept args with s, m, h This fixes running the script in FreeBSD
This commit is contained in:
parent
3c0c64c7ab
commit
333480f138
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ summarize_pings() {
|
|||
print_dots() {
|
||||
while : ; do
|
||||
printf "."
|
||||
sleep 1s
|
||||
sleep 1
|
||||
done
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue