summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-12-25 11:56:30 +0200
committerEfraim Flashner <efraim@flashner.co.il>2025-01-06 12:19:01 +0200
commitf5d95d6d19f6be640e372ab109fa16472ed9d8f9 (patch)
tree7d84ed9ef82bcf854ac64a6a42e3edd35b4da88d /gnu
parente4c31be0aa1946d7c8da34e60fbc656a34fc9c5a (diff)
gnu: rbw: Fix bash completion directory.
* gnu/packages/rust-apps.scm (rbw)[arguments]: Adjust the custom 'install-completions phase to install the bash completions in the correct directory. Change-Id: Icbc1cca324c503aa4171c581446cc0798311fe2a
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/rust-apps.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index cd71b6f37e0..76ff4313e90 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -3358,9 +3358,9 @@ runs a command whenever it detects modifications.")
(rbw (if ,(%current-target-system)
(search-input-file native-inputs "/bin/rbw")
(string-append out "/bin/rbw"))))
- (mkdir-p (string-append share "/bash-completion/completions"))
+ (mkdir-p (string-append out "/etc/bash_completion.d"))
(with-output-to-file
- (string-append share "/bash-completion/completions/rbw")
+ (string-append out "/etc/bash_completion.d/rbw")
(lambda _ (invoke rbw "gen-completions" "bash")))
(mkdir-p (string-append share "/fish/vendor_completions.d"))
(with-output-to-file