tmaketarball - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 40bc3b9540c2680cbddc12d6cf43a4fc114c5477
 (DIR) parent 638f5c0d2fde7dcab1ac7d91d6b09e8c14a2a815
 (HTM) Author: rsc <devnull@localhost>
       Date:   Fri, 14 Jan 2005 20:13:15 +0000
       
       maketarball
       
       Diffstat:
         A dist/maketarball                    |      19 +++++++++++++++++++
       
       1 file changed, 19 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/dist/maketarball b/dist/maketarball
       t@@ -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
       +