From 22e6d86f317a34c44654fdc18f99911a8278e5b8 Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Fri, 21 Mar 2014 20:32:55 +0000 Subject: [PATCH] Need quotes adding -U to mvn args git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1580034 13f79535-47bb-0310-9956-ffa450edef68 --- dev-support/test-patch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-support/test-patch.sh b/dev-support/test-patch.sh index 540772294dd..6b5515e2a25 100755 --- a/dev-support/test-patch.sh +++ b/dev-support/test-patch.sh @@ -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