1
0
mirror of https://github.com/moparisthebest/spdylay synced 2024-08-13 17:03:54 -04:00
spdylay/makerelease.sh
2013-01-12 17:05:11 +09:00

12 lines
272 B
Bash
Executable File

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