You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tt-rss/utils/create-release-tarball.sh

7 lines
128 B
Bash

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