Small edits
License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
Richard Littauer committed
Aug 16, 2016 at 13:50 UTC
4f4f57e030f338cecf0e1021b42f0e5a1854f61d
1 file changed
+8
-8
README.md
+8
-8
@@ -104,17 +104,17 @@ $ make install
104
#### Building on less common systems
105
106
If your operating system isn't officially supported, but you still want to try
107
-building ipfs anyways (It should work fine in most cases). You can do the
107
+building ipfs anyways (it should work fine in most cases), you can do the
108
following:
109
110
-- install gx: `go get github.com/whyrusleeping/gx`
111
-- install gx-go: `go get github.com/whyrusleeping/gx-go`
112
-- fetch ipfs source: `go get -d github.com/ipfs/go-ipfs 2> /dev/null`
113
-- enter source directory: `cd $GOPATH/src/github.com/ipfs/go-ipfs`
114
-- install deps: `gx install`
115
-- install ipfs: `go install ./cmd/ipfs`
110
+- Install gx: `go get github.com/whyrusleeping/gx`
111
+- Install gx-go: `go get github.com/whyrusleeping/gx-go`
112
+- Fetch ipfs source: `go get -d github.com/ipfs/go-ipfs 2> /dev/null`
113
+- Enter source directory: `cd $GOPATH/src/github.com/ipfs/go-ipfs`
114
+- Install deps: `gx install`
115
+- Install ipfs: `go install ./cmd/ipfs`
116
117
-Note: This process may break if gx or any of its dependencies break as `go get`
117
+Note: This process may break if [gx](https://github.com/whyrusleeping/gx) or any of its dependencies break as `go get`
118
will always select the latest code for every dependency, often resulting in
119
mismatched APIs.
120