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.
7 lines
128 B
Bash
7 lines
128 B
Bash
16 years ago
|
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
|