diff options
author | Simon Ruderich <simon@ruderich.org> | 2016-09-15 01:12:43 +0200 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2016-09-15 04:20:24 +0200 |
commit | 2680a613bef0b98ed0f0b7529a988162548d38ff (patch) | |
tree | 0d8a639a2a10679a74828095f93967d8c23f6a38 /web/download.rst | |
parent | 9784e364246d23d4ac8a0fe1466f877594d4a1d0 (diff) | |
download | Nim-2680a613bef0b98ed0f0b7529a988162548d38ff.tar.gz |
Always use https:// in git clone
git:// is unencrypted.
Diffstat (limited to 'web/download.rst')
-rw-r--r-- | web/download.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/download.rst b/web/download.rst index 6593a928c..583398c20 100644 --- a/web/download.rst +++ b/web/download.rst @@ -70,9 +70,9 @@ directory where you would like the download to take place. The following commands can be used to download the current development branch and then to build it:: - 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 |