mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-21 20:18:00 +01:00
fix incorrect install dir for fish completion
fish completions should never be installed to share/fish/completions/ as that directory is reserved exclusively for completions shipped as part of the fish source code. Use the same vendor_completions.d/ directory which the default fish configuration uses.
This commit is contained in:
parent
70cb831c41
commit
dd922c09bb
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -28,7 +28,7 @@ sharefiles = [('ucs', 'ucsmap')]
|
|||
commands = ['ponysay', 'ponythink', 'ponysay-tool']
|
||||
|
||||
shells = [('bash', '/usr/share/bash-completion/completions/ponysay', 'GNU Bash'),
|
||||
('fish', '/usr/share/fish/completions/ponysay.fish', 'Friendly interactive shell'),
|
||||
('fish', '/usr/share/fish/vendor_completions.d/ponysay.fish', 'Friendly interactive shell'),
|
||||
('zsh', '/usr/share/zsh/site-functions/_ponysay', 'zsh')]
|
||||
|
||||
mansections = [('ponysay', '6'),
|
||||
|
|
Loading…
Reference in a new issue