From 586a4292d6cf5b697721dba604f79aa55ccf58b2 Mon Sep 17 00:00:00 2001
From: "Paolo G. Giarrusso"
Date: Sat, 10 May 2014 00:40:24 +0200
Subject: [PATCH 1/2] Fix typos
---
src/sphinx/GettingStartedApplications/MyFirstProject.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/sphinx/GettingStartedApplications/MyFirstProject.rst b/src/sphinx/GettingStartedApplications/MyFirstProject.rst
index 81522b9e5..a6fd3d43d 100644
--- a/src/sphinx/GettingStartedApplications/MyFirstProject.rst
+++ b/src/sphinx/GettingStartedApplications/MyFirstProject.rst
@@ -9,7 +9,7 @@ After installing the native packager, let's set up a raw sbt project to experime
sbt builds should always specify which version of sbt they are designed to use. This helps keeps builds consistent between developers,
and documents to users which version of sbt you require for the build.
-Next, let's add the native packager to our build by created a ``project/plguins.sbt`` file with the following contents ::
+Next, let's add the native packager to our build by created a ``project/plugins.sbt`` file with the following contents ::
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "0.7.0-RC1")
@@ -70,7 +70,7 @@ platforms. There are two ways to do this in the sbt console ::
> universal:packageBin
[info] /home/jsuereth/projects/sbt/sbt-native-packager/tutorial-example/target/universal/example-cli-1.0.zip
- > universal:packageZipTarabell
+ > universal:packageZipTarball
[info] /home/jsuereth/projects/sbt/sbt-native-packager/tutorial-example/target/universal/example-cli-1.0.tgz
This task simple constructs either a tgz or zip file with the exact same contents we found in the staged directory.
From 753f1c2e0f4363e5df4bb9ba36a12ddb76d15337 Mon Sep 17 00:00:00 2001
From: "Paolo G. Giarrusso"
Date: Sat, 10 May 2014 00:42:59 +0200
Subject: [PATCH 2/2] Bump version
---
src/sphinx/GettingStartedApplications/MyFirstProject.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sphinx/GettingStartedApplications/MyFirstProject.rst b/src/sphinx/GettingStartedApplications/MyFirstProject.rst
index a6fd3d43d..ce2280999 100644
--- a/src/sphinx/GettingStartedApplications/MyFirstProject.rst
+++ b/src/sphinx/GettingStartedApplications/MyFirstProject.rst
@@ -11,7 +11,7 @@ and documents to users which version of sbt you require for the build.
Next, let's add the native packager to our build by created a ``project/plugins.sbt`` file with the following contents ::
- addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "0.7.0-RC1")
+ addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "0.7.0-RC2")
Now, the build needs to be configured for packaging. Let's define the ``build.sbt`` file as follows