plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 40bc3b9540c2680cbddc12d6cf43a4fc114c5477
parent 638f5c0d2fde7dcab1ac7d91d6b09e8c14a2a815
Author: rsc <devnull@localhost>
Date:   Fri, 14 Jan 2005 20:13:15 +0000

maketarball

Diffstat:
Adist/maketarball | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/dist/maketarball 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 +