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:
Efraim Flashner 2024-09-11 15:01:46 +03:00
parent 6cf71a550a
commit b46256b162
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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)