You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
520 B

  1. #!/bin/sh
  2. if [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fi
  3. version="$1"
  4. if [ ! -z "`git tag | grep "$version"`" ]; then echo 'ERROR: version already present'; exit 1; fi
  5. if [ ! -z "`git status --porcelain`" ]; then echo 'ERROR: the working directory is not clean; commit or stash changes'; exit 1; fi
  6. sed -i "s/__version__ = '.*'/__version__ = '$version'/" youtube_dl/__init__.py
  7. make all
  8. git add -A
  9. git commit -m "release $version"
  10. git tag -m "Release $version" "$version"