summary refs log tree commit diff
path: root/pkgs/tools/admin/bluemix-cli
diff options
context:
space:
mode:
authorJonas Chevalier <zimbatm@zimbatm.com>2020-11-12 22:22:18 +0100
committerGitHub <noreply@github.com>2020-11-12 21:22:18 +0000
commita7cb88c3def629f4d950d819254c27c1b328b2ac (patch)
treed3dd7ffff60eb64d78eea70761f60830245e979c /pkgs/tools/admin/bluemix-cli
parent3fceafce1eaa82c36a21153efbf7c1ee87af7b0e (diff)
downloadnixpkgs-a7cb88c3def629f4d950d819254c27c1b328b2ac.tar
nixpkgs-a7cb88c3def629f4d950d819254c27c1b328b2ac.tar.gz
nixpkgs-a7cb88c3def629f4d950d819254c27c1b328b2ac.tar.bz2
nixpkgs-a7cb88c3def629f4d950d819254c27c1b328b2ac.tar.lz
nixpkgs-a7cb88c3def629f4d950d819254c27c1b328b2ac.tar.xz
nixpkgs-a7cb88c3def629f4d950d819254c27c1b328b2ac.tar.zst
nixpkgs-a7cb88c3def629f4d950d819254c27c1b328b2ac.zip
tree-wide: unify Bash completions outputs (#103421)
Use $out/share/bash-completion/completions to store the Bash completions
Diffstat (limited to 'pkgs/tools/admin/bluemix-cli')
-rw-r--r--pkgs/tools/admin/bluemix-cli/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/admin/bluemix-cli/default.nix b/pkgs/tools/admin/bluemix-cli/default.nix
index f97a6e5df89..b0a5af35def 100644
--- a/pkgs/tools/admin/bluemix-cli/default.nix
+++ b/pkgs/tools/admin/bluemix-cli/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     install -m755 -D -t $out/bin/cfcli bin/cfcli/cf
     ln -sv $out/bin/ibmcloud $out/bin/bx
     ln -sv $out/bin/ibmcloud $out/bin/bluemix
-    install -D -t "$out/etc/bash_completion.d" bx/bash_autocomplete
+    install -D -t "$out/share/bash-completion/completions" bx/bash_autocomplete
     install -D -t "$out/share/zsh/site-functions" bx/zsh_autocomplete
   '';