diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-11-27 09:21:43 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2025-12-04 10:29:10 +0100 |
| commit | eed9c722c570cd44e0af2baedf3026bdcbc3ebea (patch) | |
| tree | 9e6c15153b690313f771e9b2c451ee2532b14937 | |
| parent | ded4b391dc3c7af8d8369eb5a7b23cd6c62c7b85 (diff) | |
gnu: zoxide: Fix bash completions path.
* gnu/packages/rust-apps.scm (zoxide)[arguments]: Fix
’install-more #:phase.
Change-Id: Ie8fd1876346b3d203c00519191085f2b031e2214
| -rw-r--r-- | gnu/packages/rust-apps.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 071c75ec3b9..a8bc891802e 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -4219,7 +4219,8 @@ It supports taxonomies, shortcodes, and live reloading.") (share (string-append out "/share")) (man1 (string-append share "/man/man1")) (bash-completions-dir - (string-append out "/etc/bash-completion.d")) + (string-append + out "/share/bash-completion/completions")) (zsh-completions-dir (string-append share "/zsh/site-functions")) (fish-completions-dir |
