Need quotes adding -U to mvn args

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1580034 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2014-03-21 20:32:55 +00:00
parent 8bd304ae42
commit 22e6d86f31
1 changed files with 2 additions and 2 deletions

View File

@ -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