mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: git-annex: Fix bash completion directory.
This is a follow-up to 7c5d4031c9
.
* gnu/packages/haskell-apps.scm (git-annex)[arguments]: Fix a typo in
the bash completion directory.
Change-Id: Ibbf807203c8305910acf3a2a0dd2d6086ffb6dfd
This commit is contained in:
parent
6cf71a550a
commit
b46256b162
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
|||
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
|
||||
;;; Copyright © 2019, 2020 Kyle Meyer <kyle@kyleam.com>
|
||||
;;; Copyright © 2015 John Soo <jsoo1@asu.edu>
|
||||
;;; Copyright © 2019, 2020, 2022, 2023 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2019, 2020, 2022-2024 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2019, 2020 Alex Griffin <a@ajgrf.com>
|
||||
;;; Copyright © 2020 Alexandru-Sergiu Marton <brown121407@member.fsf.org>
|
||||
;;; Copyright © 2020 Brian Leung <bkleung89@gmail.com>
|
||||
|
@ -374,7 +374,7 @@ (define-public git-annex
|
|||
(add-after 'install 'install-more
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bash (string-append out "/etc/bash_completions.d"))
|
||||
(bash (string-append out "/etc/bash_completion.d"))
|
||||
(fish (string-append out "/share/fish/vendor_completions.d"))
|
||||
(zsh (string-append out "/share/zsh/site-functions")))
|
||||
(setenv "PREFIX" out)
|
||||
|
|
Loading…
Reference in a new issue