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 | |
parent | 9784e364246d23d4ac8a0fe1466f877594d4a1d0 (diff) | |
download | Nim-2680a613bef0b98ed0f0b7529a988162548d38ff.tar.gz |
Always use https:// in git clone
git:// is unencrypted.
-rw-r--r-- | bootstrap.sh | 2 | ||||
-rw-r--r-- | tests/manyloc/keineschweine/README.md | 2 | ||||
-rw-r--r-- | web/download.rst | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index dd551b52d..5d05ddbf8 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,7 +3,7 @@ set -e set -x if [ ! -e csources/.git ]; then - git clone --depth 1 git://github.com/nim-lang/csources.git csources + git clone --depth 1 https://github.com/nim-lang/csources.git csources fi cd "csources" diff --git a/tests/manyloc/keineschweine/README.md b/tests/manyloc/keineschweine/README.md index 1323f4ae3..20facbced 100644 --- a/tests/manyloc/keineschweine/README.md +++ b/tests/manyloc/keineschweine/README.md @@ -11,7 +11,7 @@ Just a dumb little game ### How to build? -* `git clone --recursive git://github.com/fowlmouth/keineSchweine.git somedir` +* `git clone --recursive https://github.com/fowlmouth/keineSchweine.git somedir` * `cd somedir` * `nim c -r nakefile test` or `nim c -r keineschweine && ./keineschweine` 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 |