summaryrefslogtreecommitdiffhomepage
path: root/BUILD.md
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@gmail.com>2019-04-03 14:05:11 +0900
committerFUJITA Tomonori <fujita.tomonori@gmail.com>2019-04-03 14:05:11 +0900
commit0ef2ef26aac46845f2a483b4725cbf2c1243cd63 (patch)
tree5638f28a4ad4214be06445ae2a6d5cd40f10364a /BUILD.md
parentf37fa078753a2525f87c6434a2d1dad8ef859ae8 (diff)
docs: update BUILD.md for module support
Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Diffstat (limited to 'BUILD.md')
-rw-r--r--BUILD.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/BUILD.md b/BUILD.md
index dd1dd560..2b3b3c15 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -2,10 +2,11 @@
## Building the development environment
-You need a working [Go environment](https://golang.org/doc/install) (1.11 or newer).
+You need a working [Go environment](https://golang.org/doc/install) (1.11 or newer) with the module support enabled.
```bash
-$ go get github.com/osrg/gobgp/...
+$ git clone git://github.com/osrg/gobgp
+$ cd gobgp && go mod download
```
Now ready to modify the code and build two binaries, `cmd/gobgp` and `cmd/gobgpd`.