print date to log; know where cvs is

This commit is contained in:
jwz 1998-06-13 00:43:15 +00:00
parent 99fc4ee758
commit ea1e30c8b1
3 changed files with 15 additions and 3 deletions

View File

@ -3,7 +3,7 @@
# to do full-text searches.
# Created 12-Jun-98 by jwz.
PATH=/opt/local/bin:$PATH
PATH=/opt/local/bin:/opt/cvs-tools/bin:$PATH
export PATH
lxr_dir=.
@ -14,6 +14,8 @@ log=$db_dir/glimpseindex.log
exec > $log 2>&1
set -x
date
cd $db_dir/tmp
set -e
@ -21,4 +23,6 @@ time glimpseindex -H . $src_dir
chmod -R a+r .
mv .glimpse* ../
date
exit 0

View File

@ -5,7 +5,7 @@
CVSROOT=:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
export CVSROOT
PATH=/opt/local/bin:$PATH
PATH=/opt/local/bin:/opt/cvs-tools/bin:$PATH
export PATH
lxr_dir=.
@ -16,6 +16,8 @@ log=$db_dir/cvs.log
exec > $log 2>&1
set -x
date
# update the lxr sources
pwd
cvs -Q -d $CVSROOT update -dP
@ -25,4 +27,6 @@ cd $src_dir
cd ..
cvs -Q -d $CVSROOT checkout MozillaSource
date
exit 0

View File

@ -3,7 +3,7 @@
# to turn function names into clickable links.
# Created 12-Jun-98 by jwz.
PATH=/opt/local/bin:$PATH
PATH=/opt/local/bin:/opt/cvs-tools/bin:$PATH
export PATH
lxr_dir=.
@ -14,6 +14,8 @@ log=$db_dir/genxref.log
exec > $log 2>&1
set -x
date
lxr_dir=`pwd`
cd $db_dir/tmp
@ -22,4 +24,6 @@ time $lxr_dir/genxref $src_dir
chmod -R a+r .
mv xref fileidx ../
date
exit 0