youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 4c0941853a71c1055bae5411812a0b0eae23ba17
parent c11726364e26d9993ecb43574238855646e0e238
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 24 Mar 2014 10:25:49 +0100

[devscripts/release] Check version number

Diffstat:
Mdevscripts/release.sh | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/devscripts/release.sh b/devscripts/release.sh @@ -22,6 +22,12 @@ fi if [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fi version="$1" +major_version=$(echo "$version" | sed -n 's#^\([0-9]*\.[0-9]*\.[0-9]*\).*#\1#p') +if test "$major_version" '!=' "$(date '+%Y.%m.%d')"; then + echo "$version does not start with today's date!" + exit 1 +fi + if [ ! -z "`git tag | grep "$version"`" ]; then echo 'ERROR: version already present'; exit 1; fi if [ ! -z "`git status --porcelain | grep -v CHANGELOG`" ]; then echo 'ERROR: the working directory is not clean; commit or stash changes'; exit 1; fi useless_files=$(find youtube_dl -type f -not -name '*.py')