Documentation: make install must run in workspace

This commit is contained in:
Giuseppe 2018-03-11 17:31:46 +01:00 committed by Derek Parker
parent 449b3cedef
commit 2ba27af6e7

@ -8,9 +8,11 @@ There are two ways to install on Linux. First is the standard `go get` method:
go get -u github.com/derekparker/delve/cmd/dlv
```
Alternatively, you can clone the repo and run:
Alternatively make sure $GOPATH is set (e.g. as `~/.go`) and:
```
$ git clone https://github.com/derekparker/delve.git $GOPATH/src/github.com/derekparker/delve
$ cd $GOPATH/src/github.com/derekparker/delve
$ make install
```