1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 09:05:55 +00:00

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

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