From 29b9f6a9b28ff2fba366debe61c286127c07bfbc Mon Sep 17 00:00:00 2001 From: Yuri <38410279+yuri0@users.noreply.github.com> Date: Thu, 4 Oct 2018 00:13:22 -0700 Subject: [PATCH] Change glide to dep in README.md (#80) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bcb3deb06..3ebed8f40 100644 --- a/README.md +++ b/README.md @@ -63,10 +63,10 @@ recommended that `GOPATH` is set to a directory in your home directory such as - Run the following commands to obtain btcd, all dependencies, and install it: ```bash -$ go get -u github.com/Masterminds/glide +$ # Install dep: https://golang.github.io/dep/docs/installation.html $ git clone https://github.com/daglabs/btcd $GOPATH/src/github.com/daglabs/btcd $ cd $GOPATH/src/github.com/daglabs/btcd -$ glide install +$ dep ensure $ go install . ./cmd/... ``` @@ -86,7 +86,7 @@ Install a newer MSI ```bash $ cd $GOPATH/src/github.com/daglabs/btcd -$ git pull && glide install +$ git pull && dep ensure $ go install . ./cmd/... ```