From 378c96795598ebda2d28ff4c2725ece1bd7e0ed7 Mon Sep 17 00:00:00 2001 From: Christian Goeschel Ndjomouo Date: Fri, 31 Oct 2025 13:18:58 -0400 Subject: [PATCH] bash-completion: (setsid) add missing --fork Signed-off-by: Christian Goeschel Ndjomouo --- bash-completion/setsid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash-completion/setsid b/bash-completion/setsid index 955ec27c0e..bf22477cf4 100644 --- a/bash-completion/setsid +++ b/bash-completion/setsid @@ -11,7 +11,7 @@ _setsid_module() esac case $cur in -*) - OPTS="--ctty --wait --help --version" + OPTS="--ctty --wait --fork --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;; -- 2.47.3