nghttp2/makerelease.sh

12 lines
240 B
Bash
Raw Normal View History

2013-01-12 09:05:11 +01:00
#!/bin/sh -e
2014-02-05 15:12:53 +01:00
TAG=$1
PREV_TAG=$2
2013-01-12 09:05:11 +01:00
2014-02-05 15:12:53 +01:00
git checkout refs/tags/$TAG
git log --pretty=fuller --date=short refs/tags/$PREV_TAG..HEAD > ChangeLog
2013-01-12 09:05:11 +01:00
./configure && \
make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"
make distclean