2003-08-19 22:01:27 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
## $Id$
|
|
|
|
|
|
|
|
# Create a nightly tarball from CVS export
|
|
|
|
|
|
|
|
# need to set PATH because we might be running from a cron job.
|
|
|
|
# on our Solaris servers, cvs is in /opt/misc/bin
|
|
|
|
|
|
|
|
if [ -d /disks/asimov ]; then
|
2003-12-02 07:40:43 +00:00
|
|
|
PATH=/disks/philmor/a/users/quarl/local/Node-SOLARIS/bin:/disks/philmor/a/users/quarl/local/bin:/disks/philmor/a/users/quarl/bin:/usr/ccs/bin:/usr/local/cygnus:/disks/milkyway/a/users/anderson/seti/bin:/opt/misc/bin:/usr/ucb:/usr/bin:/usr/local/bin
|
2003-08-19 22:01:27 +00:00
|
|
|
export PATH
|
|
|
|
fi
|
|
|
|
|
2003-12-02 07:40:43 +00:00
|
|
|
CVSROOT=/usr/local/warez/cvsroot \
|
|
|
|
CHECKOUT='cvs export boinc' \
|
2003-12-02 07:41:59 +00:00
|
|
|
DIR=boinc \
|
2003-12-02 07:40:43 +00:00
|
|
|
FILENAME_TGZ="boinc-cvs-TODAY.tar.gz" \
|
|
|
|
FILENAME_ZIP="boinc-cvs-TODAY.zip" \
|
|
|
|
DESTINATION="/disks/milkyway/a/users/anderson/boinc/doc/source/nightly/" \
|
|
|
|
/disks/philmor/a/users/quarl/bin/export-tarball
|