Commit f7a11220 authored by Curtis Jones's avatar Curtis Jones
Browse files

paru: correct shell completion file names

Previously the package was installing blank shell completion files.

i.e: `share/zsh/site-functions/_zsh` instead of
`share/zsh/site-functions/_paru`
parent 35004ba9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -53,9 +53,9 @@ rustPlatform.buildRustPackage rec {

  postInstall = ''
    installManPage man/paru.8 man/paru.conf.5
    installShellCompletion --bash completions/bash
    installShellCompletion --fish completions/fish
    installShellCompletion --zsh completions/zsh
    installShellCompletion --name paru.bash --bash completions/bash
    installShellCompletion --name paru.fish --fish completions/fish
    installShellCompletion --name _paru --zsh completions/zsh
    cp -r locale "$out/share/"
  '';