mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
66e8777769
Many systems (including Debian, Ubuntu and derivatives like Linux Mint) use Dash as a noninteractive version of `/bin/sh`, invoked by `make`. Dash's `echo` command doesn't understand the `-e` option and this generates spurious output when running `make`. See [a bugreport][0] for one of the many instances of this bug/feature in action. [0]: https://bugs.launchpad.net/ubuntu/+source/dash/+bug/72167
23 lines
706 B
Makefile
23 lines
706 B
Makefile
default: update
|
|
|
|
update: compile update-readme update-latest
|
|
|
|
update-latest:
|
|
./youtube-dl.dev --version > LATEST_VERSION
|
|
|
|
update-readme:
|
|
@options=$$(COLUMNS=80 ./youtube-dl.dev --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
|
|
header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
|
|
footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
|
|
echo "$${header}" > README.md && \
|
|
echo >> README.md && \
|
|
echo '## OPTIONS' >> README.md && \
|
|
echo "$${options}" >> README.md&& \
|
|
echo >> README.md && \
|
|
echo '## FAQ' >> README.md && \
|
|
echo "$${footer}" >> README.md
|
|
|
|
compile:
|
|
cp youtube_dl/__init__.py youtube-dl
|
|
|
|
.PHONY: default compile update update-latest update-readme
|