mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2025-02-17 01:17:54 +01:00
Starting with bash-completion 1.90 (released in November 2011) completion files should be installed in the share/ directory. They must use the executable’s name for loading on demand, so for this reason, it was necessary to generate the completion file in a new directory, so that it does not clash with the `youtube-dl` executable. This is because Python’s setup-tools does not support data files to be installed with a different base name. I have tested this change with both `make install` and `pip install`, as these two install procedures have slightly different code paths. I removed the `bash-completion` (phony) target from the make file, as we now have a directory with that name, and I could not see the target being referenced anywhere. Closes #804.
54 lines
521 B
Plaintext
54 lines
521 B
Plaintext
*.pyc
|
|
*.pyo
|
|
*.class
|
|
*~
|
|
*.DS_Store
|
|
wine-py2exe/
|
|
py2exe.log
|
|
*.kate-swp
|
|
build/
|
|
dist/
|
|
MANIFEST
|
|
README.txt
|
|
youtube-dl.1
|
|
bash-completion/youtube-dl
|
|
youtube-dl.fish
|
|
youtube_dl/extractor/lazy_extractors.py
|
|
youtube-dl
|
|
youtube-dl.exe
|
|
youtube-dl.tar.gz
|
|
.coverage
|
|
cover/
|
|
updates_key.pem
|
|
*.egg-info
|
|
*.srt
|
|
*.ttml
|
|
*.sbv
|
|
*.vtt
|
|
*.flv
|
|
*.mp4
|
|
*.m4a
|
|
*.m4v
|
|
*.mp3
|
|
*.3gp
|
|
*.wav
|
|
*.ape
|
|
*.mkv
|
|
*.swf
|
|
*.part
|
|
*.ytdl
|
|
*.swp
|
|
test/local_parameters.json
|
|
.tox
|
|
youtube-dl.zsh
|
|
|
|
# IntelliJ related files
|
|
.idea
|
|
*.iml
|
|
|
|
tmp/
|
|
venv/
|
|
|
|
# VS Code related files
|
|
.vscode
|