From 182252328470e96785c4def668e72895038c29e2 Mon Sep 17 00:00:00 2001 From: Michel Casabianca Date: Thu, 5 Sep 2024 15:08:51 +0200 Subject: [PATCH] Updated tasks reference --- doc/tasks.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/tasks.md b/doc/tasks.md index 05bd1f2..ed2a1b9 100644 --- a/doc/tasks.md +++ b/doc/tasks.md @@ -487,6 +487,7 @@ Arguments: - print: text to print (string). - color: text color (string). +- noreturn: if set to true, do not print a newline at the end (bool, optional). Possible colors are black, red, green, yellow, blue, magenta, cyan and white. @@ -623,13 +624,15 @@ Sleep given number of seconds. Arguments: - sleep: duration to sleep in seconds (float). +- mute: if set to true, do not print a message (bool, optional). Examples: # sleep for 1.5 seconds - sleep: 1.5 - # sleep for 3 seconds (3.0 as a float) + # sleep for 3 seconds without message - sleep: 3.0 + mute: true ## start