Blob Blame History Raw
#!/bin/sh

# Usage: ./make-git-snapshot.sh [COMMIT]
#
# to make a snapshot of the given tag/branch.  Defaults to HEAD.
# Point env var REF to a local mesa repo to reduce clone time.

DIRNAME=sunpinyin-$( date +%Y%m%d )

echo REF ${REF:+--reference $REF}
echo DIRNAME $DIRNAME
echo HEAD ${1:-HEAD}

rm -rf $DIRNAME

git clone ${REF:+--reference $REF} \
	git://github.com/sunpinyin/sunpinyin.git $DIRNAME

rm -rf $DIRNAME/wrapper

tar cf $DIRNAME.tar.xz $DIRNAME

# rm -rf $DIRNAME