Skip to content

Commit

Permalink
And update docs to match
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Jan 5, 2014
1 parent 0d6700e commit d7d95a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*.iml
*.iws
.idea/
.sbtlib/*.jar
sbt/*.jar
.settings
.cache
/build/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/sbt assembly

Once you've built Spark, the easiest way to start using it is the shell:

Expand All @@ -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/sbt test`

## A Note About Hadoop Versions

Expand Down
2 changes: 1 addition & 1 deletion sbt/sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
SBT_VERSION=0.12.4
URL1=http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar
URL2=http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar
JAR=.sbtlib/sbt-launch-${SBT_VERSION}.jar
JAR=sbt/sbt-launch-${SBT_VERSION}.jar

printf "Checking for system sbt ["
if hash sbt 2>/dev/null; then
Expand Down

0 comments on commit d7d95a0

Please sign in to comment.