Merge pull request #3176 from clnperez/build-w-alternate-workspace

Add example for building using existing workspace
This commit is contained in:
Nathan LeClaire 2016-03-10 16:48:27 -08:00
commit ccc5fe6c7d
1 changed files with 13 additions and 5 deletions

View File

@ -35,11 +35,19 @@ To build the `docker-machine` binary using containers, simply run:
Make sure the source code directory is under a correct directory structure; Make sure the source code directory is under a correct directory structure;
Example of cloning and preparing the correct environment `GOPATH`: Example of cloning and preparing the correct environment `GOPATH`:
mkdir docker-machine $ mkdir docker-machine
cd docker-machine $ cd docker-machine
export GOPATH="$PWD" $ export GOPATH="$PWD"
go get github.com/docker/machine $ go get github.com/docker/machine
cd src/github.com/docker/machine $ cd src/github.com/docker/machine
If you want to use your existing workspace, make sure your `GOPATH` is set to
the directory that contains your `src` directory, e.g.:
$ export GOPATH=/home/yourname/work
$ mkdir -p $GOPATH/src/github.com/docker
$ cd $GOPATH/src/github.com/docker && git clone git@github.com:docker/machine.git
$ cd machine
At this point, simply run: At this point, simply run: