aboutsummaryrefslogtreecommitdiff
path: root/make-distribution.sh
diff options
context:
space:
mode:
authortrystanleftwich <trystan@atscale.com>2015-10-13 22:11:08 +0100
committerSean Owen <sowen@cloudera.com>2015-10-13 22:11:08 +0100
commit0d1b73b78b600420121ea8e58ff659ae8b4feebe (patch)
treeed00f7fdf18a23fda8fa41c9619796d7ef4a8c99 /make-distribution.sh
parentb3ffac5178795f2d8e7908b3e77e8e89f50b5f6f (diff)
downloadspark-0d1b73b78b600420121ea8e58ff659ae8b4feebe.tar.gz
spark-0d1b73b78b600420121ea8e58ff659ae8b4feebe.tar.bz2
spark-0d1b73b78b600420121ea8e58ff659ae8b4feebe.zip
[SPARK-11052] Spaces in the build dir causes failures in the build/mv…
…n script Author: trystanleftwich <trystan@atscale.com> Closes #9065 from trystanleftwich/SPARK-11052.
Diffstat (limited to 'make-distribution.sh')
-rwxr-xr-xmake-distribution.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/make-distribution.sh b/make-distribution.sh
index 62c0ba6df7..24418ace26 100755
--- a/make-distribution.sh
+++ b/make-distribution.sh
@@ -121,7 +121,7 @@ if [ $(command -v git) ]; then
fi
-if [ ! $(command -v "$MVN") ] ; then
+if [ ! "$(command -v "$MVN")" ] ; then
echo -e "Could not locate Maven command: '$MVN'."
echo -e "Specify the Maven command with the --mvn flag"
exit -1;