civodul pushed a commit to branch devel
in repository shepherd.
commit 93c8dfa105b92e70e0baab77913d26bb35ab22f8
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sun Nov 3 15:24:01 2024 +0100
bash completion: Complete ‘schedule’ for ‘timer’ service.
* etc/completion/bash/herd (_herd_complete_subcommand): Add ‘timer’ next
to ‘mcron’.
---
etc/completion/bash/herd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/etc/completion/bash/herd b/etc/completion/bash/herd
index 57271bc..40c4939 100644
--- a/etc/completion/bash/herd
+++ b/etc/completion/bash/herd
@@ -26,7 +26,7 @@ _herd_complete_subcommand()
mapfile -t COMPREPLY < <(compgen -W "guix-daemon" --
"${COMP_WORDS[$COMP_CWORD]}")
;;
schedule)
- mapfile -t COMPREPLY < <(compgen -W "mcron" --
"${COMP_WORDS[$COMP_CWORD]}")
+ mapfile -t COMPREPLY < <(compgen -W "mcron timer" --
"${COMP_WORDS[$COMP_CWORD]}")
;;
set-http-proxy)
mapfile -t COMPREPLY < <(compgen -W "guix-daemon" --
"${COMP_WORDS[$COMP_CWORD]}")