Skip to content

Commit

Permalink
docs/INSTALL: update non-make installation to include lncli
Browse files Browse the repository at this point in the history
The make file contains installing lncli, which has to be installed 
manually when not using make.
  • Loading branch information
jraedisch authored and Roasbeef committed May 14, 2018
1 parent 28b1211 commit cc494bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Alternatively, if one doesn't wish to use `make`, then the `go` commands can be
used directly:
```
dep ensure -v
go install -v
go install -v ./...
```

**Updating**
Expand All @@ -87,7 +87,7 @@ used directly:
cd $GOPATH/src/github.com/lightningnetwork/lnd
git pull
dep ensure -v
go install -v
go install -v ./...
```

**Tests**
Expand Down

0 comments on commit cc494bd

Please sign in to comment.