aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorNathan Skrzypczak <nathan.skrzypczak@gmail.com>2022-07-07 16:57:45 +0200
committerNathan Skrzypczak <nathan.skrzypczak@gmail.com>2022-08-02 16:14:00 +0200
commit67cea0df30f7ef348e265c9326f7a9f15ba26240 (patch)
treeda516e461f93d08a3806b80a55655a8943ad96f5 /docs
parent278cd54dc581167fcd206d725c04ba69b3109c25 (diff)
Change module name to go.fd.io/govppHEADv0.6.0-alphamaster
We are changing the module name from git.fd.io/govpp.git to go.fd.io/govpp to make repository migration easier. Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com> Change-Id: Idd6e0d583a92f6b82fe9adeffd026cd6b856038b
Diffstat (limited to 'docs')
-rw-r--r--docs/ADAPTERS.md4
-rw-r--r--docs/GENERATOR.md4
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/ADAPTERS.md b/docs/ADAPTERS.md
index 870b5fe..d3fa8b2 100644
--- a/docs/ADAPTERS.md
+++ b/docs/ADAPTERS.md
@@ -30,8 +30,8 @@ sudo dpkg -i vpp*.deb
To build & install GoVPP:
```sh
-go get -u git.fd.io/govpp.git
-cd $GOPATH/src/git.fd.io/govpp.git
+go get -u go.fd.io/govpp
+cd $GOPATH/src/go.fd.io/govpp
make test
make install
```
diff --git a/docs/GENERATOR.md b/docs/GENERATOR.md
index 9cc40fc..4787a05 100644
--- a/docs/GENERATOR.md
+++ b/docs/GENERATOR.md
@@ -12,10 +12,10 @@ This document contains information about GoVPP generator which is used for gener
```shell
# Latest version (most recent tag)
-go install git.fd.io/govpp.git/cmd/binapi-generator@latest
+go install go.fd.io/govpp/cmd/binapi-generator@latest
# Development version (master branch)
-go install git.fd.io/govpp.git/cmd/binapi-generator@master
+go install go.fd.io/govpp/cmd/binapi-generator@master
```
NOTE: Using `go install` to install programs is only supported in Go 1.16+ ([more info](https://go.dev/doc/go1.16#go-command)). For Go 1.15 or older, use `go get` instead of `go install`.