nghttp2/makerelease.sh

15 lines
310 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
git submodule update --init
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
git submodule update --init
./configure --with-mruby && \
2013-01-12 09:05:11 +01:00
make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"
make distclean