about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLuke Granger-Brown <git@lukegb.com>2023-07-30 01:48:10 +0100
committerGitHub <noreply@github.com>2023-07-30 01:48:10 +0100
commit67c54db21a24343130b4c9c97b57b2aef8f24c5e (patch)
tree959c041d0f6e103eceac354c74685dce6554d2ce
parent7cdce123f56f970e3de40f24f6ec4fafe7cd52b4 (diff)
parent135b79b95463e62b1e1db9132b9dbaf79af2f13b (diff)
Merge pull request #246113 from maxbrunet/fix/solo2-cli/zsh-completion
solo2-cli: fix zsh completion
-rw-r--r--pkgs/tools/security/solo2-cli/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/security/solo2-cli/default.nix b/pkgs/tools/security/solo2-cli/default.nix
index ea4b05b79a03c..1580b946e71e0 100644
--- a/pkgs/tools/security/solo2-cli/default.nix
+++ b/pkgs/tools/security/solo2-cli/default.nix
@@ -33,7 +33,8 @@ rustPlatform.buildRustPackage rec {
 
   postInstall = ''
     install -D 70-solo2.rules $out/lib/udev/rules.d/70-solo2.rules
-    installShellCompletion target/*/release/solo2.{bash,fish,zsh}
+    installShellCompletion target/*/release/solo2.{bash,fish}
+    installShellCompletion --zsh target/*/release/_solo2
   '';
 
   doCheck = true;