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:59:35 UTC

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

Author: stack
Date: Fri Mar 21 20:59:34 2014
New Revision: 1580051

URL: http://svn.apache.org/r1580051
Log:
Undo the -U I added to get htrace to download from maven central; i.e. restore to how it was

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=1580051&r1=1580050&r2=1580051&view=diff
==============================================================================
--- hbase/trunk/dev-support/test-patch.sh (original)
+++ hbase/trunk/dev-support/test-patch.sh Fri Mar 21 20:59:34 2014
@@ -21,9 +21,9 @@ bindir=$(dirname $0)
 
 # Defaults
 if [ -z "$MAVEN_HOME" ]; then
-  MVN="mvn -U"
+  MVN=mvn
 else
-  MVN="$MAVEN_HOME/bin/mvn -U"
+  MVN=$MAVEN_HOME/bin/mvn
 fi
 
 PROJECT_NAME=HBase