aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-08-27 11:37:00 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-08-29 21:19:06 -0700
commitaab345c46318264a58ee86704567a2586de32b13 (patch)
treed88565e9427dafe555b07bf99da775f482dc6792 /bin
parent8d81358a05e885a76a27475075a46973c7540a0c (diff)
downloadspark-aab345c46318264a58ee86704567a2586de32b13.tar.gz
spark-aab345c46318264a58ee86704567a2586de32b13.tar.bz2
spark-aab345c46318264a58ee86704567a2586de32b13.zip
Fix finding of assembly JAR, as well as some pointers to ./run
Diffstat (limited to 'bin')
-rwxr-xr-xbin/compute-classpath.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/compute-classpath.sh b/bin/compute-classpath.sh
index 5dc86c51a4..c7819d4932 100755
--- a/bin/compute-classpath.sh
+++ b/bin/compute-classpath.sh
@@ -35,7 +35,7 @@ CLASSPATH="$SPARK_CLASSPATH:$FWDIR/conf"
if [ -f "$FWDIR/RELEASE" ]; then
ASSEMBLY_JAR=`ls "$FWDIR"/jars/spark-assembly*.jar`
else
- ASSEMBLY_JAR=`ls "$FWDIR"/assembly/target/scala-$SCALA_VERSION/spark-assembly*.jar`
+ ASSEMBLY_JAR=`ls "$FWDIR"/assembly/target/scala-$SCALA_VERSION/spark-assembly*hadoop*.jar`
fi
CLASSPATH="$CLASSPATH:$ASSEMBLY_JAR"