aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynold Xin <rxin@apache.org>2014-01-08 11:55:37 -0800
committerReynold Xin <rxin@apache.org>2014-01-08 11:55:37 -0800
commit04d83fc37f9eef89c20331c85291a0a169f75e6d (patch)
tree62959c4a7484ce4da592f27186a84965d1ba6a97
parent56ebfeaa526edb7555c2c0889ada3e014ecbad09 (diff)
parentcf4aaf92d672e03f5d53078cdfe6ea60ba0c1c0c (diff)
downloadspark-04d83fc37f9eef89c20331c85291a0a169f75e6d.tar.gz
spark-04d83fc37f9eef89c20331c85291a0a169f75e6d.tar.bz2
spark-04d83fc37f9eef89c20331c85291a0a169f75e6d.zip
Merge pull request #360 from witgo/master
fix make-distribution.sh show version: command not found
-rwxr-xr-xmake-distribution.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/make-distribution.sh b/make-distribution.sh
index 1a3a5d0209..e6b5956d1e 100755
--- a/make-distribution.sh
+++ b/make-distribution.sh
@@ -44,7 +44,7 @@ DISTDIR="$FWDIR/dist"
# Get version from SBT
export TERM=dumb # Prevents color codes in SBT output
-VERSIONSTRING=$FWDIR/sbt/sbt "show version"
+VERSIONSTRING=$($FWDIR/sbt/sbt "show version")
if [ $? == -1 ] ;then
echo -e "You need sbt installed and available on your path."