diff options
author | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2019-04-03 14:05:11 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2019-04-03 14:05:11 +0900 |
commit | 0ef2ef26aac46845f2a483b4725cbf2c1243cd63 (patch) | |
tree | 5638f28a4ad4214be06445ae2a6d5cd40f10364a /BUILD.md | |
parent | f37fa078753a2525f87c6434a2d1dad8ef859ae8 (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.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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`. |