1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-23 11:46:37 +02:00
ttrss/utils/create-release-tarball.sh
2009-01-31 16:28:45 +03:00

7 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