mirror of
https://github.com/namecoin/ncdns
synced 2024-11-16 00:13:01 +00:00
Add missing git checkout
to build instructions
This commit is contained in:
parent
86206ee584
commit
9d294dacf1
20
README.md
20
README.md
@ -99,9 +99,25 @@ Option A: Using Go build commands (works on any platform with Bash):
|
||||
2. Run `go get -d -t -u github.com/namecoin/ncdns/...`. The ncdns source code will be
|
||||
retrieved automatically.
|
||||
|
||||
3. Run `go generate github.com/namecoin/x509-signature-splice/...`. Some source code will be generated.
|
||||
3. Run `pushd $(go env GOPATH)/src/github.com/namecoin/x509-signature-splice`.
|
||||
|
||||
4. Run `go get -t github.com/namecoin/ncdns/...`. ncdns will be built. The binaries will be at
|
||||
4. Depending on your Go version (run `go version` to check), run one of the following:
|
||||
|
||||
| **Go version** | **Run this** |
|
||||
-------------------|-----------------------|
|
||||
| 1.8.x or earlier | `git checkout go1.6` |
|
||||
| 1.9.x | `git checkout go1.9` |
|
||||
| 1.10.x | `git checkout go1.10` |
|
||||
| 1.11.x | `git checkout go1.11` |
|
||||
| 1.12.x | `git checkout go1.12` |
|
||||
| 1.13.x or later | `git checkout master` |
|
||||
|
||||
|
||||
5. Run `popd`.
|
||||
|
||||
6. Run `go generate github.com/namecoin/x509-signature-splice/...`. Some source code will be generated.
|
||||
|
||||
7. Run `go get -t github.com/namecoin/ncdns/...`. ncdns will be built. The binaries will be at
|
||||
$GOPATH/bin/ncdns.
|
||||
|
||||
Option B: Using Makefile (non-Windows platforms):
|
||||
|
Loading…
Reference in New Issue
Block a user