<p><b>dwj07@fsu.edu</b> 2012-02-13 09:17:02 -0700 (Mon, 13 Feb 2012)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Fixing a regex compatibility issue.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/ocean_projects/ocean_test_cases_staging/ocean/oceanTestCases.sh
===================================================================
--- branches/ocean_projects/ocean_test_cases_staging/ocean/oceanTestCases.sh        2012-02-11 05:04:46 UTC (rev 1500)
+++ branches/ocean_projects/ocean_test_cases_staging/ocean/oceanTestCases.sh        2012-02-13 16:17:02 UTC (rev 1501)
@@ -57,12 +57,12 @@
         cd ..
 
         ## Make a variable containing the make options used to build mpas
-        MAKE_OPTS=`grep &quot;$COMPILE_SET:&quot; mpas/Makefile -A 11 | tail -n 11 | grep &quot;[a-Z]&quot;`
+        MAKE_OPTS=`grep &quot;$COMPILE_SET:&quot; mpas/Makefile -A 11 | tail -n 11 | grep &quot;[a-zA-Z]&quot;`
 
         ## Create the run_info file, which will be used later to identify what
         ## revision the run was performed from
         echo &quot;Compile flags:&quot; &gt;&gt; .run_info
-        grep &quot;$COMPILE_SET:&quot; mpas/Makefile -A 11 | grep &quot;[a-Z]&quot; &gt;&gt; .run_info
+        grep &quot;$COMPILE_SET:&quot; mpas/Makefile -A 11 | grep &quot;[a-zA-Z]&quot; &gt;&gt; .run_info
         echo &quot;&quot; &gt;&gt; .run_info
         echo &quot;Checkout path:&quot; &gt;&gt; .run_info
         echo &quot;$REPOSITORY_ADDRESS&quot; &gt;&gt; .run_info

</font>
</pre>