Add make instructions for Windows WSL users

This commit is contained in:
Matthew Lilley 2018-06-30 00:48:31 +01:00
parent 076fc71261
commit c571b04236

View File

@ -64,6 +64,14 @@ cd $GOPATH/src/github.com/lightningnetwork/lnd
make && make install
```
For Windows WSL users, make will need to be referenced directly via /usr/bin/make/, or alternatively by wrapping quotation marks around make, like so:
```
/usr/bin/make && /usr/bin/make install
"make" && "make" install
```
Alternatively, if one doesn't wish to use `make`, then the `go` commands can be
used directly:
```