From: Philipp Hagemeister Date: Tue, 13 Sep 2011 20:29:50 +0000 (+0200) Subject: Automatically generate LATEST_VERSION (Closes #16) X-Git-Url: http://git.jankratochvil.net/?p=youtube-dl.git;a=commitdiff_plain;h=b576abb4572c61289269db61da8c472d487a7a03 Automatically generate LATEST_VERSION (Closes #16) --- diff --git a/LATEST_VERSION b/LATEST_VERSION new file mode 100644 index 0000000..afa0b77 --- /dev/null +++ b/LATEST_VERSION @@ -0,0 +1 @@ +2011.09.13 diff --git a/Makefile b/Makefile index 0039f90..e725dc7 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ default: update -update: update-readme +update: update-readme update-latest +update-latest: + ./youtube-dl --version > LATEST_VERSION update-readme: @options=$$(COLUMNS=80 ./youtube-dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \ @@ -15,4 +17,4 @@ update-readme: -.PHONY: default update update-readme +.PHONY: default update update-latest update-readme