docs: Add GOPATH/bin to PATH

This commit is contained in:
Wim
2018-02-11 14:02:51 +01:00
committed by James Shubin
parent 644e5164b1
commit 6c9e0ff974

View File

@@ -35,6 +35,12 @@ cd $GOPATH/src/github.com/purpleidea/
git clone --recursive https://github.com/purpleidea/mgmt/ git clone --recursive https://github.com/purpleidea/mgmt/
cd $GOPATH/src/github.com/purpleidea/mgmt cd $GOPATH/src/github.com/purpleidea/mgmt
``` ```
* Add $GOPATH/bin to $PATH
```
export PATH=$PATH:$GOPATH/bin
```
* Run `make deps` to install system and golang dependencies. Take a look at `misc/make-deps.sh` for details. * Run `make deps` to install system and golang dependencies. Take a look at `misc/make-deps.sh` for details.
* Run `make build` to get a freshly built `mgmt` binary. * Run `make build` to get a freshly built `mgmt` binary.