diff --git a/documentation/index.html b/documentation/index.html index 141f3f7..7fde417 100644 --- a/documentation/index.html +++ b/documentation/index.html @@ -234,8 +234,8 @@ dependencies {

Settings

- You can create settings that will apply to all your Kobalt builds by creating - a file in ~/kobalt/settings.xml: + You can define settings that will apply to all your Kobalt builds by creating + the file ~/.config/kobalt/settings.xml:

 <kobalt-settings>
@@ -332,10 +332,10 @@ Available templates
   Plug-in: Kobalt
     "java"              Generates a simple Java project
     "kotlin"            Generates a simple Kotlin project
-    "kobaltPlugin"             Generate a sample Kobalt plug-in project
+    "kobaltPlugin"      Generate a sample Kobalt plug-in project
   Plug-in: Android
-    "androidJava"              Generate a simple Android Java project<
-    "androidKotlin"              Generate a simple Android Kotlin project
+ "androidJava" Generate a simple Android Java project + "androidKotlin" Generate a simple Android Kotlin project

We see the same plug-ins we just reviewed and a new one provided by the Android plug-in called "android-java". The --plugins parameter expects a comma-separated list of plug-in diff --git a/getting-started/index.html b/getting-started/index.html index 1761eab..e8df501 100644 --- a/getting-started/index.html +++ b/getting-started/index.html @@ -51,11 +51,13 @@ $ which kobaltw

Manually

-Download the zip file and unzip it in a directory that you can add to your $PATH variable: -

+Download the zip file, unzip it and add that directory to your $PATH variable so that you can invoke the command kobaltw. +

 cd yourLocation
 unzip kobalt-xxx.zip
+cd kobalt-xxx
+export PATH=$PWD:$PATH
 

2. Initialize your project