diff --git a/discover/getting-started.html b/discover/getting-started.html index a646d61..4d2ea22 100644 --- a/discover/getting-started.html +++ b/discover/getting-started.html @@ -20,7 +20,7 @@ >wget https://github.com/redline-smalltalk/redline-smalltalk.github.com/raw/master/assets/redline-deploy.zip >unzip redline-deploy.zip -d redline >cd redline ->./stic st.redline.example.HelloWorld +>java -cp test-classes:lib/redline-0.5-SNAPSHOT.jar:lib/antlr-runtime-3.4.jar:lib/asm-4.1.jar st.redline.Stic st.redline.example.HelloWorld {% endhighlight %}

@@ -41,7 +41,7 @@ When you want to run the Smalltalk Test Suite to ensure the runtime is working as expected you need to do the above quick start then issue the following command on your command line / shell. Note: When you build Redline from the sources the Smalltalk Test Suite is automatically run with each build. {% highlight bash %} ->./stic st.redline.kernel.TestRunner +>java -cp test-classes:lib/redline-0.5-SNAPSHOT.jar:lib/antlr-runtime-3.4.jar:lib/asm-4.1.jar st.redline.Stic st.redline.kernel.TestRunner {% endhighlight %}

@@ -146,7 +146,7 @@ {% highlight bash %} >cd target/redline-deploy/ >export REDLINE_HOME=`cd "$REDLINE_HOME" > /dev/null && pwd` ->./stic -s examples/ st.redline.HelloWorld +>java -cp test-classes:lib/redline-0.5-SNAPSHOT.jar:lib/antlr-runtime-3.4.jar:lib/asm-4.1.jar st.redline.Stic st.redline.example.HelloWorld {% endhighlight %}

@@ -164,20 +164,6 @@ 'st/redline'. Please take a moment to look at the contents of this file.

-

-If you run 'stic' without arguments you will see some usage information, from which you can see how to run scripts with sources -and libraries in different locations. The usage looks like this: -{% highlight bash %} -usage: stic [options] - -?,--help print this message. - -e execute the Smalltalk code (enclosed in "" double quotes). - -r where to find Redline. Defaults to environment REDLINE_HOME. - -s where to find input source files. Separate each path with :. - The paths src/main/smalltalk and src/test/smalltalk are - included by default. Ignored if -e specified. - -v,--verbose output messages about what Redline is doing. -{% endhighlight %} -

This process has got the latest Redline Smalltalk source code, built it and ran a Smalltalk example. You may want to put the resulting Redline Smalltalk code elsewhere on your system. If you do want to do this then copy the entire redline-deploy folder to