diff options
-rwxr-xr-x | CVSROOT/updateCVSROOT | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CVSROOT/updateCVSROOT b/CVSROOT/updateCVSROOT index 8fbdcccf5e95..b697fd8eb950 100755 --- a/CVSROOT/updateCVSROOT +++ b/CVSROOT/updateCVSROOT @@ -2,7 +2,7 @@ # # Called in place of mkmodules to take care of files mkmodules doesn't know. # -# $Id: updateCVSROOT,v 1.5 1995/11/27 07:43:59 peter Exp $ +# $Id: updateCVSROOT,v 1.6 1995/11/27 07:48:19 peter Exp $ PATH=$PATH:/bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin export PATH @@ -14,11 +14,12 @@ cd $1 for i in $FILELIST do - find $i,v -newer $i -exec co -u $i \; + find $i,v -newer $i -exec echo Updating CVSROOT/$i \; -exec co -q -u $i \; done find avail,v -newer cvs-committers -exec ./mkavail \; cmp -s cvs-committers /home/mail/cvs-committers || { + echo "====== checking cvs-committers mailing list members ======" echo "/home/mail/cvs-committers is different to \$CVSROOT/cvs-committers" echo "please check to see what needs to be updated..." } |