From 457e58befe8cb7c346e54b344a45fa357b68cfc0 Mon Sep 17 00:00:00 2001 From: Holden Karau Date: Wed, 6 Apr 2016 16:00:29 -0700 Subject: [SPARK-14424][BUILD][DOCS] Update the build docs to switch from assembly to package and add a no… MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What changes were proposed in this pull request? Change our build docs & shell scripts to that developers are aware of the change from "assembly" to "package" ## How was this patch tested? Manually ran ./bin/spark-shell after ./build/sbt assembly and verified error message printed, ran new suggested build target and verified ./bin/spark-shell runs after this. Author: Holden Karau Author: Holden Karau Closes #12197 from holdenk/SPARK-1424-spark-class-broken-fix-build-docs. --- bin/spark-class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/spark-class b/bin/spark-class index b489591778..b2a36b9846 100755 --- a/bin/spark-class +++ b/bin/spark-class @@ -44,7 +44,7 @@ fi if [ ! -d "$SPARK_JARS_DIR" ] && [ -z "$SPARK_TESTING$SPARK_SQL_TESTING" ]; then echo "Failed to find Spark jars directory ($SPARK_JARS_DIR)." 1>&2 - echo "You need to build Spark before running this program." 1>&2 + echo "You need to build Spark with the target \"package\" before running this program." 1>&2 exit 1 else LAUNCH_CLASSPATH="$SPARK_JARS_DIR/*" -- cgit v1.2.3