You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by rx...@apache.org on 2014/01/07 09:18:33 UTC

[03/14] git commit: Switch from sbt to ./sbt in the README file

Switch from sbt to ./sbt in the README file


Project: http://git-wip-us.apache.org/repos/asf/incubator-spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-spark/commit/b4a1ffc6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-spark/tree/b4a1ffc6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-spark/diff/b4a1ffc6

Branch: refs/heads/master
Commit: b4a1ffc6c2634118bb1d07216221b862c32d6397
Parents: 97123be
Author: Holden Karau <ho...@pigscanfly.ca>
Authored: Sat Jan 4 20:17:30 2014 -0800
Committer: Holden Karau <ho...@pigscanfly.ca>
Committed: Sat Jan 4 20:17:30 2014 -0800

----------------------------------------------------------------------
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/b4a1ffc6/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 6daa463..db1e2c4 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ This README file only contains basic setup instructions.
 Spark requires Scala 2.10. The project is built using Simple Build Tool (SBT),
 which can be obtained [here](http://www.scala-sbt.org). To build Spark and its example programs, run:
 
-    sbt assembly
+    ./sbt assembly
 
 Once you've built Spark, the easiest way to start using it is the shell:
 
@@ -41,7 +41,7 @@ locally with one thread, or "local[N]" to run locally with N threads.
 Testing first requires [Building](#Building) Spark. Once Spark is built, tests
 can be run using:
 
-`sbt test`
+`./sbt test`
  
 ## A Note About Hadoop Versions