mirror of https://github.com/cutefishos/appmotor
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.
10 lines
344 B
Bash
10 lines
344 B
Bash
#!/bin/sh
|
|
if test -n "$1"
|
|
then
|
|
git archive --format tar --remote=$1 --output=meegotouch-applauncherd-0.29.1.tar --prefix meegotouch-applauncherd-0.29.1/ released/0.29.1
|
|
bzip2 meegotouch-applauncherd-0.29.1.tar
|
|
else
|
|
echo "Usage: create-tarball.sh <repo>"
|
|
echo " where <repo> is suitable for git archive --remote=<repo>"
|
|
fi
|