docs: spell out go commands in case user doesn't have make
Fixes #1171.
This commit is contained in:
parent
5f059e74cb
commit
dd60e9e720
@ -64,6 +64,13 @@ cd $GOPATH/src/github.com/lightningnetwork/lnd
|
||||
make && make install
|
||||
```
|
||||
|
||||
Alternatively, if one doesn't wish to use `make`, then the `go` commands can be
|
||||
used directly:
|
||||
```
|
||||
dep ensure -v
|
||||
go install -v
|
||||
```
|
||||
|
||||
**Updating**
|
||||
|
||||
To update your version of `lnd` to the latest version run the following
|
||||
@ -74,6 +81,15 @@ git pull
|
||||
make && make install
|
||||
```
|
||||
|
||||
Alternatively, if one doesn't wish to use `make`, then the `go` commands can be
|
||||
used directly:
|
||||
```
|
||||
cd $GOPATH/src/github.com/lightningnetwork/lnd
|
||||
git pull
|
||||
dep ensure -v
|
||||
go install -v
|
||||
```
|
||||
|
||||
**Tests**
|
||||
|
||||
To check that `lnd` was installed properly run the following command:
|
||||
|
Loading…
Reference in New Issue
Block a user