mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 14:00:35 +00:00
Always use https:// in git clone
git:// is unencrypted.
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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`
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user