* [bug#39963] [PATCH] fd bash_completion typo
@ 2020-03-07 0:03 mike
2020-03-07 18:05 ` bug#39963: " Jakub Kądziołka
0 siblings, 1 reply; 2+ messages in thread
From: mike @ 2020-03-07 0:03 UTC (permalink / raw)
To: 39963
[-- Attachment #1.1: Type: text/plain, Size: 89 bytes --]
Hey guix!
* The "fd" package installs its bash_completion file in the wrong directory.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: Type: text/x-patch, Size: 1130 bytes --]
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 72c982f23c..ce50562228 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -184,11 +184,11 @@ also knows about symlinks, extended attributes, and Git.")
;; Manpages
(install-file "doc/fd.1" (string-append out "/share/man/man1"))
;; Completions
- (install-completion "^fd.bash$" "/etc/bash-completion.d")
+ (install-completion "^fd.bash$" "/etc/bash_completion.d")
(install-completion "^fd.fish$" "/share/fish/vendor_completions.d")
(install-completion "^_fd$" "/share/zsh/site-functions")
- (rename-file (string-append out "/etc/bash-completion.d/fd.bash")
- (string-append out "/etc/bash-completion.d/fd"))
+ (rename-file (string-append out "/etc/bash_completion.d/fd.bash")
+ (string-append out "/etc/bash_completion.d/fd"))
#t))))))
(inputs `(("jemalloc" ,jemalloc)))
(home-page "https://github.com/sharkdp/fd")
[-- Attachment #1.3: Type: text/plain, Size: 114 bytes --]
--
APL is a write-only language. I can write programs in APL, but I can't
read any of them.
-- Roy Keir
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-03-07 18:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-07 0:03 [bug#39963] [PATCH] fd bash_completion typo mike
2020-03-07 18:05 ` bug#39963: " Jakub Kądziołka
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.