src/utils/qa/weeklybld/makeStrictBeta.csh 1.8

1.8 2010/03/03 01:48:20 galt
jim added keyword Warning which was triggering as an error, but its not serious enough to stop the build for
Index: src/utils/qa/weeklybld/makeStrictBeta.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/weeklybld/makeStrictBeta.csh,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -B -U 4 -r1.7 -r1.8
--- src/utils/qa/weeklybld/makeStrictBeta.csh	5 Jan 2010 04:13:11 -0000	1.7
+++ src/utils/qa/weeklybld/makeStrictBeta.csh	3 Mar 2010 01:48:20 -0000	1.8
@@ -15,8 +15,11 @@
 # the makefile now does zoo automatically now when you call it
 echo "trackDb Make strict. [${0}: `date`]"
 cd $BUILDDIR/$dir/kent/src/hg/makeDb/trackDb
 make strict >& make.strict.log
+/bin/egrep -i "html missing" make.strict.log > warning.txt
+/bin/egrep -iv "html missing" make.strict.log > make.strict.log2
+mv make.strict.log2 make.strict.log
 set res = `/bin/egrep -i "error|warn" make.strict.log`
 set wc = `echo "$res" | wc -w` 
 if ( "$wc" != "0" ) then
    echo "trackDb strict errs found:"
@@ -24,9 +27,8 @@
    tail make.strict.log
    exit 1
 endif
 
-/bin/egrep -i "html missing" make.strict.log > warning.txt
 set wc = `cat warning.txt | wc -w`
 if ( "$wc" != "0" ) then
     echo "trackDb strict html non-fatal errs found:"
     cat warning.txt