mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
changing the template file extension
This commit is contained in:
parent
95eb771dcd
commit
f6152b4b64
3 changed files with 2 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -38,7 +38,7 @@ README.txt: README.md
|
||||||
youtube-dl.1: README.md
|
youtube-dl.1: README.md
|
||||||
pandoc -s -f markdown -t man README.md -o youtube-dl.1
|
pandoc -s -f markdown -t man README.md -o youtube-dl.1
|
||||||
|
|
||||||
youtube-dl.bash-completion: youtube_dl/*.py devscripts/bash-completion.template
|
youtube-dl.bash-completion: youtube_dl/*.py devscripts/bash-completion.in
|
||||||
python devscripts/bash-completion.py
|
python devscripts/bash-completion.py
|
||||||
|
|
||||||
youtube-dl.tar.gz: all
|
youtube-dl.tar.gz: all
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
import youtube_dl
|
import youtube_dl
|
||||||
|
|
||||||
BASH_COMPLETION_FILE = "youtube-dl.bash-completion"
|
BASH_COMPLETION_FILE = "youtube-dl.bash-completion"
|
||||||
BASH_COMPLETION_TEMPLATE = "devscripts/bash-completion.template"
|
BASH_COMPLETION_TEMPLATE = "devscripts/bash-completion.in"
|
||||||
|
|
||||||
def build_completion(opt_parser):
|
def build_completion(opt_parser):
|
||||||
opts_flag = []
|
opts_flag = []
|
||||||
|
|
Loading…
Reference in a new issue