You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2014/03/21 21:32:55 UTC

svn commit: r1580034 - /hbase/trunk/dev-support/test-patch.sh

Author: stack
Date: Fri Mar 21 20:32:55 2014
New Revision: 1580034

URL: http://svn.apache.org/r1580034
Log:
Need quotes adding -U to mvn args

Modified:
    hbase/trunk/dev-support/test-patch.sh

Modified: hbase/trunk/dev-support/test-patch.sh
URL: http://svn.apache.org/viewvc/hbase/trunk/dev-support/test-patch.sh?rev=1580034&r1=1580033&r2=1580034&view=diff
==============================================================================
--- hbase/trunk/dev-support/test-patch.sh (original)
+++ hbase/trunk/dev-support/test-patch.sh Fri Mar 21 20:32:55 2014
@@ -21,9 +21,9 @@ bindir=$(dirname $0)
 
 # Defaults
 if [ -z "$MAVEN_HOME" ]; then
-  MVN=mvn -U
+  MVN="mvn -U"
 else
-  MVN=$MAVEN_HOME/bin/mvn -U
+  MVN="$MAVEN_HOME/bin/mvn -U"
 fi
 
 PROJECT_NAME=HBase