guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: fd: Install bash completion properly.


From: guix-commits
Subject: branch master updated: fd: Install bash completion properly.
Date: Sat, 07 Mar 2020 13:03:54 -0500

This is an automated email from the git hooks/post-receive script.

niedzejkob pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 9eed0a7  fd: Install bash completion properly.
9eed0a7 is described below

commit 9eed0a74f92ed4e1b631f4658d98a5f46ad1664d
Author: Michael Rohleder <address@hidden>
AuthorDate: Sat Mar 7 18:32:27 2020 +0100

    fd: Install bash completion properly.
    
    * gnu/packages/rust-apps.scm (fd)[arguments]: Replace
      the dash in "bash-completion.d" with an underscore.
    
    Signed-off-by: Jakub Kądziołka <address@hidden>
---
 gnu/packages/rust-apps.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 72c982f..af51c0f 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2019, 2020 John Soo <address@hidden>
 ;;; Copyright © 2019, 2020 Efraim Flashner <address@hidden>
 ;;; Copyright © 2020 Jakub Kądziołka <address@hidden>
+;;; Copyright © 2020 Michael Rohleder <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -184,11 +185,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";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]