aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorThomas Graves <tgraves@apache.org>2014-03-27 11:54:43 -0500
committerThomas Graves <tgraves@apache.org>2014-03-27 11:54:43 -0500
commit426042ad24a54b4b776085cbf4e1896464efc613 (patch)
tree8f9eee0aa35ee0479b1f5c8c79603fc00c370a31 /bin
parent5b2d863e339b3955eafc0588212bd5231a9163a0 (diff)
downloadspark-426042ad24a54b4b776085cbf4e1896464efc613.tar.gz
spark-426042ad24a54b4b776085cbf4e1896464efc613.tar.bz2
spark-426042ad24a54b4b776085cbf4e1896464efc613.zip
SPARK-1330 removed extra echo from comput_classpath.sh
remove the extra echo which prevents spark-class from working. Note that I did not update the comment above it, which is also wrong because I'm not sure what it should do. Should hive only be included if explicitly built with sbt hive/assembly or should sbt assembly build it? Author: Thomas Graves <tgraves@apache.org> Closes #241 from tgravescs/SPARK-1330 and squashes the following commits: b10d708 [Thomas Graves] SPARK-1330 removed extra echo from comput_classpath.sh
Diffstat (limited to 'bin')
-rwxr-xr-xbin/compute-classpath.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/bin/compute-classpath.sh b/bin/compute-classpath.sh
index d6f1ff9084..bef42df71c 100755
--- a/bin/compute-classpath.sh
+++ b/bin/compute-classpath.sh
@@ -36,7 +36,6 @@ CLASSPATH="$SPARK_CLASSPATH:$FWDIR/conf"
# Hopefully we will find a way to avoid uber-jars entirely and deploy only the needed packages in
# the future.
if [ -f "$FWDIR"/sql/hive/target/scala-$SCALA_VERSION/spark-hive-assembly-*.jar ]; then
- echo "Hive assembly found, including hive support. If this isn't desired run sbt hive/clean."
# Datanucleus jars do not work if only included in the uberjar as plugin.xml metadata is lost.
DATANUCLEUSJARS=$(JARS=("$FWDIR/lib_managed/jars"/datanucleus-*.jar); IFS=:; echo "${JARS[*]}")