From 016415d99a7c9b3ef405f20ab6d8a1a9dbdbea78 Mon Sep 17 00:00:00 2001 From: Abreu Date: Tue, 10 Aug 2021 13:15:06 -0300 Subject: [PATCH] Added newline to warning. --- functions/insist.fish | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/insist.fish b/functions/insist.fish index ec651f6..655bc30 100644 --- a/functions/insist.fish +++ b/functions/insist.fish @@ -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 \ No newline at end of file +end