me
/
guix
Archived
1
0
Fork 0

gnu: mpd-mpc: Really fix directory for bash completions.

Commit 577fd21122 contains a typo wherein a dash
was used instead of an underscore.  Compare for example the git package to see
where completions should be installed.

* gnu/packages/mpd.scm (mpd-mpc)[move-completion]: Use “etc/bash_completion.d”
instead of “etc/bash-completion.d”.
master
Liliana Marie Prikler 2023-10-23 10:24:08 +02:00
parent fc6325ea0d
commit a25a492f2b
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ protocol.")
(let* ((out (assoc-ref outputs "out"))
(contrib (string-append out "/share/doc/mpc/contrib"))
(completion
(string-append out "/etc/bash-completion.d/")))
(string-append out "/etc/bash_completion.d/")))
(mkdir-p completion)
(rename-file (string-append contrib "/mpc-completion.bash")
(string-append completion "/mpc"))))))))