<p><b>dwj07@fsu.edu</b> 2011-12-07 15:02:13 -0700 (Wed, 07 Dec 2011)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Adding an example of explicit username and password in checkout line.<br>
<br>
        Fixing the check for pmetis.<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        2011-12-07 21:42:34 UTC (rev 1245)
+++ branches/ocean_projects/ocean_test_cases_staging/ocean/oceanTestCases.sh        2011-12-07 22:02:13 UTC (rev 1246)
@@ -6,9 +6,11 @@
 
 ## The repository address below shows how to change the revision number.
 ## Be careful with the compile set for an older version, as not all the options
-## that exists now were present in older versions.
+## that exists now were present in older versions. Below that, is an example of 
+## how to specify a username and password in the commit line.
 
 # REPOSITORY_ADDRESS=&quot;https://svn-mpas-model.cgd.ucar.edu/trunk/mpas -r 995&quot;
+# REPOSITORY_ADDRESS=&quot;https://svn-mpas-model.cgd.ucar.edu/trunk/mpas --username user --password pass&quot;
 
 REPOSITORY_ADDRESS=&quot;https://svn-mpas-model.cgd.ucar.edu/trunk/mpas&quot;
 COMPILE_SET=&quot;gfortran&quot;
@@ -240,10 +242,15 @@
 fi
 
 ## Check to see if pmetis is in path, as it is supposed to be. If not exit
-PMETIS_CHECK=`which pmetis | grep &quot;no pmetis in&quot;`
+which pmets 1&gt; /dev/null 2&gt; err
+PMETIS_CHECK=`grep &quot;no pmetis in&quot; err`
+rm err
 
-if [ -n &quot;${PMETIS}&quot; ]; then
+if [ -n &quot;${PMETIS_CHECK}&quot; ]; then
+        echo &quot;&quot;
+        echo &quot;pmetis is not found.&quot;
         echo &quot;pmetis must be in your path.&quot;
+        echo &quot;exiting.&quot;
         exit
 fi
 

</font>
</pre>