From c571b04236684bbf64577489e53a6fa27c390df6 Mon Sep 17 00:00:00 2001 From: Matthew Lilley Date: Sat, 30 Jun 2018 00:48:31 +0100 Subject: [PATCH] Add make instructions for Windows WSL users --- docs/INSTALL.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 9f612765..a7a61d41 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -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: ```