From: Philipp Hagemeister Date: Mon, 21 Nov 2011 19:00:54 +0000 (+0100) Subject: Use the dev version in Makefile X-Git-Url: http://git.jankratochvil.net/?p=youtube-dl.git;a=commitdiff_plain;h=cb6568bf21e891143dab378d4a40988fc52b9f1d Use the dev version in Makefile --- diff --git a/Makefile b/Makefile index f0602d2..07cc1ef 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,10 @@ default: update update: compile update-readme update-latest update-latest: - ./youtube-dl --version > LATEST_VERSION + ./youtube-dl.dev --version > LATEST_VERSION update-readme: - @options=$$(COLUMNS=80 ./youtube-dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \ + @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 && \