aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorprabs <prabsmails@gmail.com>2016-06-08 17:22:55 +0100
committerSean Owen <sowen@cloudera.com>2016-06-08 17:22:55 +0100
commitca70ab27cc73f6ea7fce5d179ca8f13459c8ba95 (patch)
tree208b6046fe304611cdc84de737db0feaf4f5970a
parentf958c1c3e292aba98d283637606890f353a9836c (diff)
downloadspark-ca70ab27cc73f6ea7fce5d179ca8f13459c8ba95.tar.gz
spark-ca70ab27cc73f6ea7fce5d179ca8f13459c8ba95.tar.bz2
spark-ca70ab27cc73f6ea7fce5d179ca8f13459c8ba95.zip
[DOCUMENTATION] Fixed target JAR path
## What changes were proposed in this pull request? Mentioned Scala version in the sbt configuration file is 2.11, so the path of the target JAR should be `/target/scala-2.11/simple-project_2.11-1.0.jar` ## How was this patch tested? n/a Author: prabs <prabsmails@gmail.com> Author: Prabeesh K <prabsmails@gmail.com> Closes #13554 from prabeesh/master.
-rw-r--r--docs/quick-start.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick-start.md b/docs/quick-start.md
index 72372a6bc8..1b961fd455 100644
--- a/docs/quick-start.md
+++ b/docs/quick-start.md
@@ -289,13 +289,13 @@ $ find .
# Package a jar containing your application
$ sbt package
...
-[info] Packaging {..}/{..}/target/scala-2.10/simple-project_2.10-1.0.jar
+[info] Packaging {..}/{..}/target/scala-{{site.SCALA_BINARY_VERSION}}/simple-project_{{site.SCALA_BINARY_VERSION}}-1.0.jar
# Use spark-submit to run your application
$ YOUR_SPARK_HOME/bin/spark-submit \
--class "SimpleApp" \
--master local[4] \
- target/scala-2.10/simple-project_2.10-1.0.jar
+ target/scala-{{site.SCALA_BINARY_VERSION}}/simple-project_{{site.SCALA_BINARY_VERSION}}-1.0.jar
...
Lines with a: 46, Lines with b: 23
{% endhighlight %}