add script to build release tarball

This commit is contained in:
Andrew Dolgov 2009-01-31 16:28:45 +03:00
parent b5227ac096
commit 7937369d25
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
if [ -z $1 ]; then
echo usage: $0 VERSION
exit 1
fi
git archive --format=tar --prefix=tt-rss-$1/ $1 | gzip >tt-rss-$1.tar.gz