diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2016-01-23 12:02:18 +0000 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2016-01-23 12:02:18 +0000 |
commit | b2d716b0b0199be250eecaeacefb5f64a36d20d9 (patch) | |
tree | 5a253ff9616b1b4da82398d4c91de645d0736131 | |
parent | e12e29a3e3d52319091c41c40bea4044c5fc84d2 (diff) | |
parent | 22a65d12f0ab0009658d49007d1d536ef409ee11 (diff) | |
download | Nim-b2d716b0b0199be250eecaeacefb5f64a36d20d9.tar.gz |
Merge pull request #3768 from FedericoCeratto/patch-6
Switch git clone URLs to HTTPS
-rw-r--r-- | readme.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readme.md b/readme.md index 32dbad9f1..27b2273f0 100644 --- a/readme.md +++ b/readme.md @@ -39,9 +39,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/nim-lang/Nim.git +$ git clone https://github.com/nim-lang/Nim.git $ cd Nim -$ git clone --depth 1 git://github.com/nim-lang/csources +$ git clone --depth 1 https://github.com/nim-lang/csources $ cd csources && sh build.sh $ cd .. $ bin/nim c koch |