From 0d72c03b04da8da3edb551917c0718277c696f4f Mon Sep 17 00:00:00 2001 From: mstsirkin Date: Mon, 7 Apr 2014 11:27:24 +0000 Subject: makeall: move parts out to makezip.sh Useful to pack up tex source in a zip file. Signed-off-by: Michael S. Tsirkin git-svn-id: https://tools.oasis-open.org/version-control/svn/virtio@339 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652 --- makezip.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 makezip.sh (limited to 'makezip.sh') diff --git a/makezip.sh b/makezip.sh new file mode 100755 index 0000000..d6cb68f --- /dev/null +++ b/makezip.sh @@ -0,0 +1,19 @@ +export SPECDOC=${SPECDOC:-`cat REVISION`} +rm -f $SPECDOC +if test -d .git; then + git archive --format=zip --prefix=tex/ -o $SPECDOC.zip HEAD +elif test -d .svn; then + rm -fr export-from-svn + mkdir -p export-from-svn + svn export . export-from-svn/tex + cd export-from-svn/ + zip ../$SPECDOC.zip tex/ + cd .. +else + echo Neither .git nor .svn found. + echo Falling back to generated list. +fi +zip -d $SPECDOC.zip tex/.gitattributes +mkdir -p listings +cp virtio-ring.h listings/virtio_ring.h +zip $SPECDOC.zip listings/virtio_ring.h -- cgit