1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Description: move zsh completion to correct path
Author: Christopher Bock <christopher@bocki.com>
Forwarded: not-needed
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@
(path, [f for f in files if check_file(f)])
for (path, files) in [
("share/bash-completion/completions", ["data/completion/gallery-dl"]),
- ("share/zsh/site-functions" , ["data/completion/_gallery-dl"]),
+ ("share/zsh/vendor-completions" , ["data/completion/_gallery-dl"]),
("share/fish/vendor_completions.d" , ["data/completion/gallery-dl.fish"]),
("share/man/man1" , ["data/man/gallery-dl.1"]),
("share/man/man5" , ["data/man/gallery-dl.conf.5"]),
|