tt-rss/utils/create-release-tarball.sh
2009-01-31 16:28:45 +03:00

6 lines
128 B
Bash
Executable file

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