1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2026-04-26 00:33:26 +00:00
Files
youtube-dl/devscripts/release.sh
T

11 lines
520 B
Bash
Raw Normal View History

2012-10-06 10:00:40 -03:00
#!/bin/sh
2012-09-25 23:56:01 +02:00
if [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fi
version="$1"
if [ ! -z "`git tag | grep "$version"`" ]; then echo 'ERROR: version already present'; exit 1; fi
if [ ! -z "`git status --porcelain`" ]; then echo 'ERROR: the working directory is not clean; commit or stash changes'; exit 1; fi
sed -i "s/__version__ = '.*'/__version__ = '$version'/" youtube_dl/__init__.py
make all
git add -A
git commit -m "release $version"
git tag -m "Release $version" "$version"