third_party_nghttp2/makerelease.sh
2014-02-05 23:12:53 +09:00

12 lines
240 B
Bash
Executable File

#!/bin/sh -e
TAG=$1
PREV_TAG=$2
git checkout refs/tags/$TAG
git log --pretty=fuller --date=short refs/tags/$PREV_TAG..HEAD > ChangeLog
./configure && \
make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"
make distclean