From 439fb2655f52cecc750a0360f09b1f06f9aab5cb Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Sun, 3 Sep 2017 10:10:06 -0700 Subject: [PATCH] Fix the go get command. We need to download dependencies for all packages in the repo, not just the root (there are no packages at the root). fixes #219 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10c7e5f..1e60e39 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ There is currently only one bundle of `go-libp2p`, this package. This bundle is ### Install ```bash -> go get -d github.com/libp2p/go-libp2p +> go get -d github.com/libp2p/go-libp2p/... > cd $GOPATH/src/github.com/libp2p/go-libp2p > make > make deps -- GitLab