diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-09-14 18:45:12 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-09-14 18:45:12 +0100 |
commit | 33b9ab47d9903b9dcbb6c9886cd0646f53e88b62 (patch) | |
tree | 15900634b86a756f0d8eec4ac02837669a1becca | |
parent | 9f09c840d615145759ad79472832abc90564cdc3 (diff) | |
download | Nim-33b9ab47d9903b9dcbb6c9886cd0646f53e88b62.tar.gz |
Fix build instructions in readme.
-rw-r--r-- | readme.md | 6 | ||||
-rw-r--r-- | readme.txt | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/readme.md b/readme.md index 83d6ef748..7c6fc8e45 100644 --- a/readme.md +++ b/readme.md @@ -30,9 +30,9 @@ To build from source you will need: If you are on a fairly modern *nix system, the following steps should work: ``` -$ git clone git://github.com/Araq/Nim.git -$ cd Nim -$ git clone --depth 1 git://github.com/nim-code/csources +$ git clone git://github.com/Araq/Nimrod.git +$ cd Nimrod +$ git clone --depth 1 git://github.com/nimrod-code/csources $ cd csources && sh build.sh $ cd .. $ bin/nim c koch diff --git a/readme.txt b/readme.txt index 21448b71b..7c6fc8e45 100644 --- a/readme.txt +++ b/readme.txt @@ -30,10 +30,10 @@ To build from source you will need: If you are on a fairly modern *nix system, the following steps should work: ``` -$ git clone git://github.com/Araq/Nim.git -$ cd Nim -$ git clone --depth 1 git://github.com/nim-code/csources -$ cd csources && ./build.sh +$ git clone git://github.com/Araq/Nimrod.git +$ cd Nimrod +$ git clone --depth 1 git://github.com/nimrod-code/csources +$ cd csources && sh build.sh $ cd .. $ bin/nim c koch $ ./koch boot -d:release |