Index: /issm/trunk/cron/report.sh
===================================================================
--- /issm/trunk/cron/report.sh	(revision 883)
+++ /issm/trunk/cron/report.sh	(revision 884)
@@ -12,14 +12,15 @@
 
 #Process log for errors 
-cat nightly.log | grep 'package: macayeal' > macayeal.log
-cat nightly.log | grep 'package: ice' > ice.log
-cat nightly.log | grep 'package: cielo_serial' > cielo_serial.log
-cat nightly.log | grep 'package: cielo_parallel' > cielo_parallel.log
+cat nightly.log | grep 'package: macayeal'      | grep -v "not supported yet" > macayeal.log
+cat nightly.log | grep 'package: ice'           | grep -v "not supported yet" > ice.log
+cat nightly.log | grep 'package: cielo_serial'  | grep -v "not supported yet" > cielo_serial.log
+cat nightly.log | grep 'package: cielo_parallel'| grep -v "not supported yet" > cielo_parallel.log
 cat nightly.log | grep NIGHTLYRUNTERMINATEDCORRECTLY > check.log
-cat nightly.log | grep ERROR | grep -v "PETSC ERROR"> errors.log
+cat nightly.log | grep ERROR | grep -v "PETSC ERROR" > errors.log
 cat nightly.log | grep SUCCESS > success.log
 cat errors.log success.log > tests.log
 mail -s "Nightly runs of $ISSM_RELEASE on: $host_name. Date:$today." mathieu.morlighem@jpl.nasa.gov < tests.log
 
+#build report.html
 cat <<END > report.html
 <html>
@@ -118,5 +119,5 @@
 
 			#build html corresponding line
-			cat $package.log | awk '{ printf "line%so %s\n", NR, $0 }' | awk '/line'$i'o/ {printf("<td '$color'>%s</td><td '$color'> %s%s%s</td><td '$color'> %s</td><td '$color'> %s</td><td '$color'> %s</td>",$2,$3,$4,$5,$8,$10,$14);}';
+			cat $package.log | awk '{ printf "line%so %s\n", NR, $0 }' | awk '/line'$i'o/ {printf("<td '$color'>%s</td><td '$color'> %s%s%s</td><td '$color'> %s</td><td '$color'> %s</td><td '$color'> %s</td>",$2,$4,$5,$6,$8,$10,$14);}';
 			echo "</tr>"
 		done
@@ -131,4 +132,2 @@
 </div>
 END
-
-echo Script has completed
