From 7fc4aedd1ccbdeb0f4496bd651f65c88ff6d8aaf Mon Sep 17 00:00:00 2001 From: gdm85 Date: Mon, 12 Oct 2015 20:12:34 +0200 Subject: [PATCH] Simplify fetch process by using go get Signed-off-by: Giuseppe Mazzotta --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 03b27064ce..30ac76be0f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,11 +34,11 @@ To build the `docker-machine` binary using containers, simply run: Make sure the source code directory is under a correct directory structure to use Go 1.5 vendoring; example of cloning and preparing the correct environment `GOPATH`: ``` - mkdir -p projects/docker-machine/src/github.com/docker - export GOPATH="$PWD/projects/docker-machine" - cd projects/docker-machine/src/github.com/docker - git clone https://github.com/docker/machine - cd machine + mkdir docker-machine + cd docker-machine + export GOPATH="$PWD" + go get github.com/docker/machine + cd docker-machine/src/github.com/docker/machine ``` At this point, simply run: