6 lines
128 B
Bash
Executable file
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
|