install bash completion into share/bash-completion/completions

This commit is contained in:
Mike Fährmann
2019-11-07 23:23:48 +01:00
parent b0197098e6
commit 4f39d2ae64
5 changed files with 14 additions and 15 deletions

View File

@@ -36,9 +36,9 @@ VERSION = re.search(
FILES = [
(path, [f for f in files if check_file(f)])
for (path, files) in [
('etc/bash_completion.d', ['gallery-dl.bash_completion']),
('share/man/man1' , ['gallery-dl.1']),
('share/man/man5' , ['gallery-dl.conf.5']),
("share/bash-completion/completions", ["build/completion/gallery-dl"]),
("share/man/man1" , ["build/man/gallery-dl.1"]),
("share/man/man5" , ["build/man/gallery-dl.conf.5"]),
]
]