khard: fixup zsh autocompletion

I introduced an error in, install -D will create the folders until the last component excluded
so I needed to add the filename for it to create _khard
https://github.com/NixOS/nixpkgs/pull/46515
This commit is contained in:
Matthieu Coudron 2018-10-04 15:34:04 +09:00
parent 13b2903169
commit e30a2b0207

View File

@ -41,7 +41,7 @@ in with python.pkgs; buildPythonApplication rec {
]; ];
postInstall = '' postInstall = ''
install -D misc/zsh/_khard $out/share/zsh/site-functions/ install -D misc/zsh/_khard $out/share/zsh/site-functions/_khard
''; '';
# Fails; but there are no tests anyway. # Fails; but there are no tests anyway.