Signed-off-by: Bernie Innocenti bernie@codewiz.org
Index: bin/fetchgit.sh =================================================================== --- bin/fetchgit.sh (revision 261) +++ bin/fetchgit.sh (working copy) @@ -11,7 +11,7 @@
if [ ! -d $DIR/.git ]; then echo "Cloning $URL..." - git-clone $URL $DIR + git clone $URL $DIR if [ $? -ne 0 ]; then echo "Couldn't clone $URL." exit 1 @@ -22,10 +22,10 @@
export GIT_DIR=$DIR/.git
-git-fetch $URL -git-fetch --tags $URL -git-prune-packed -git-pack-redundant --all | xargs -r rm +git fetch $URL +git fetch --tags $URL +git prune-packed +git pack-redundant --all | xargs -r rm
# Make the tarball -git-tar-tree $TAG $NAME-$TAG | bzip2 > $TARBALL +git tar-tree $TAG $NAME-$TAG | bzip2 > $TARBALL
On Mon, Apr 06, 2009 at 10:21:04PM +0200, Bernie Innocenti wrote:
Signed-off-by: Bernie Innocenti bernie@codewiz.org
Acked-by: Ward Vandewege ward@gnu.org
And committed in r262.
Please, next time:
a) put [buildrom] in the subject (you had it in a previous iteration, it helps!) b) put the patch in an attachment (this one had mangled whitespace) c) put the description of the patch above your signed-off-by, please
Thanks for your contribution!
Thanks, Ward.