This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new b47c9993bc gnu: asciinema: Fix shell completions.
b47c9993bc is described below
commit b47c9993bc1146050fa6ab83f24c1a7a0baf864f
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Mar 8 11:34:28 2026 +0200
gnu: asciinema: Fix shell completions.
Fixes guix/guix#6933
* gnu/packages/terminals.scm (asciinema)[arguments]: Install the shell
completions into their directory, not AS their directory.
Change-Id: Ib8ca0d80481dbfb95210213212d074591c2b0eaa
---
gnu/packages/terminals.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 3d0164ad0d..c9b8c3096e 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -275,9 +275,9 @@ managers.")
("target/assets/completion/asciinema.elv"
"share/elvish/lib/asciinema")
("target/assets/completion/asciinema.fish"
- "share/fish/vendor_completions.d")
+ "share/fish/vendor_completions.d/")
("target/assets/completion/_asciinema"
- "share/zsh/site-functions"))
+ "share/zsh/site-functions/"))
args))))))
(native-inputs (list python-minimal)) ;needed for tests
(inputs (cargo-inputs 'asciinema))