summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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`.