commit f6142cc42d8b85ba053f4866f1887de33a693022
parent caa5c663befb123d158aa928716c194a11e8f51d
Author: Patrice Duroux <patrice.duroux@gmail.com>
Date: Wed, 1 Mar 2023 20:22:09 +0100
replace 2&>1 by 2>&1
Hi,
Just in case.
ps: it follows the point here: https://lists.debian.org/debian-qa/2023/02/msg00052.html
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/Hooks.txt b/doc/Hooks.txt
@@ -69,7 +69,7 @@ startup:
set 'bgtask_pid' @bgtask_pid
Process.detach(@bgtask_pid) # so we don't have to wait on it when we go to kill it
else
- exec "background-task args 2&>1 >> /tmp/logfile"
+ exec "background-task args 2>&1 >> /tmp/logfile"
end
after-poll: