blob: 814ee6289f4ff23d044f6bc72d18cd79b401fec0 [file] [log] [blame]
rsc40bc3b92005-01-14 20:13:15 +00001#!/u/rsc/plan9/bin/rc
2
3# cvs update
4cd $home/tmp/plan9cvs/plan9 || exit 1
5cvs up -dAP >[2=1] | grep -v Updating >$home/tmp/cvslog
6
7# exit if no changes and not being forced
8if(! test -s $home/tmp/cvslog && ~ $#* 0)
9 exit 0
10
11# create new tar ball
12cd ..
13tar cf - plan9 | gzip > plan9port.tgz
14
15# install on web
16web=/u/rsc/www/swtch.com/plan9port
17mv $web/plan9port.tgz $web/_plan9port.tgz &&
18mv plan9port.tgz $web/plan9port.tgz
19