Added newline to warning.

This commit is contained in:
Abreu 2021-08-10 13:15:06 -03:00
parent b31823d6c0
commit 016415d99a
No known key found for this signature in database
GPG Key ID: 64835466FF55F7E1
1 changed files with 3 additions and 3 deletions

View File

@ -44,8 +44,8 @@ function $cmd -V cmd -d "Perform a command repetitively until successful"
# Output, or not, the attempt count
if not set --query _flag_quiet
set --query _flag_attempts
and wrn -on "Insisting... Attempt $count of $_flag_attempts"
or wrn -on "Insisting... Attempt $count"
and wrn -o "Insisting... Attempt $count of $_flag_attempts"
or wrn -o "Insisting... Attempt $count"
end
# Stop the function, or not, if the command was performed successfuly
@ -61,4 +61,4 @@ function $cmd -V cmd -d "Perform a command repetitively until successful"
and command sleep $_flag_interval
or command sleep 1
end
end
end