From 40bc3b9540c2680cbddc12d6cf43a4fc114c5477 Mon Sep 17 00:00:00 2001 From: rsc Date: Fri, 14 Jan 2005 20:13:15 +0000 Subject: maketarball --- dist/maketarball | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dist/maketarball (limited to 'dist') diff --git a/dist/maketarball b/dist/maketarball new file mode 100644 index 00000000..814ee628 --- /dev/null +++ b/dist/maketarball @@ -0,0 +1,19 @@ +#!/u/rsc/plan9/bin/rc + +# cvs update +cd $home/tmp/plan9cvs/plan9 || exit 1 +cvs up -dAP >[2=1] | grep -v Updating >$home/tmp/cvslog + +# exit if no changes and not being forced +if(! test -s $home/tmp/cvslog && ~ $#* 0) + exit 0 + +# create new tar ball +cd .. +tar cf - plan9 | gzip > plan9port.tgz + +# install on web +web=/u/rsc/www/swtch.com/plan9port +mv $web/plan9port.tgz $web/_plan9port.tgz && +mv plan9port.tgz $web/plan9port.tgz + -- cgit v1.2.3