You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by tu...@apache.org on 2012/08/22 20:39:39 UTC

svn commit: r1376183 - /incubator/oozie/trunk/bin/test-patch

Author: tucu
Date: Wed Aug 22 18:39:38 2012
New Revision: 1376183

URL: http://svn.apache.org/viewvc?rev=1376183&view=rev
Log:
Improvements to test-patch script (tucu)

Modified:
    incubator/oozie/trunk/bin/test-patch

Modified: incubator/oozie/trunk/bin/test-patch
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/bin/test-patch?rev=1376183&r1=1376182&r2=1376183&view=diff
==============================================================================
--- incubator/oozie/trunk/bin/test-patch (original)
+++ incubator/oozie/trunk/bin/test-patch Wed Aug 22 18:39:38 2012
@@ -53,7 +53,7 @@ gitOrSvn() {
       SCM="git"
     fi
   fi
-  if [ "SCM" == "NONE" ] ; then
+  if [ "${SCM}" == "NONE" ] ; then
     which svn &> /dev/null
     if [[ $? == 0 ]] ; then
       svnOutput=`svn status 2>&1`