aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorHolden Karau <holden@pigscanfly.ca>2016-04-06 16:00:29 -0700
committerAndrew Or <andrew@databricks.com>2016-04-06 16:00:29 -0700
commit457e58befe8cb7c346e54b344a45fa357b68cfc0 (patch)
tree7f5be1eb5fbbbbd01bd5d3754e765dd39b3e1c5b /bin
parent9af5423ec28258becf27dbe89833b4f7d324d26a (diff)
downloadspark-457e58befe8cb7c346e54b344a45fa357b68cfc0.tar.gz
spark-457e58befe8cb7c346e54b344a45fa357b68cfc0.tar.bz2
spark-457e58befe8cb7c346e54b344a45fa357b68cfc0.zip
[SPARK-14424][BUILD][DOCS] Update the build docs to switch from assembly to package and add a no…
## 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 <holden@pigscanfly.ca> Author: Holden Karau <holden@us.ibm.com> Closes #12197 from holdenk/SPARK-1424-spark-class-broken-fix-build-docs.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/spark-class2
1 files changed, 1 insertions, 1 deletions
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/*"