From 4cc39e45171a92a885836cee327cf02a8c8e364e Mon Sep 17 00:00:00 2001 From: Jonathan Boulle Date: Thu, 4 Sep 2014 23:21:21 -0700 Subject: [PATCH] doc: update build instructions in README --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c95baf31e..3824fba2b 100644 --- a/README.md +++ b/README.md @@ -33,17 +33,15 @@ The latest release and setup instructions are available at [GitHub][github-relea ### Building -You can build etcd from source: +You can build etcd using the standard go workflow - ensure `GOPATH` is set appropriately, and then: ```sh -git clone https://github.com/coreos/etcd -cd etcd -./build +go get github.com/coreos/etcd ``` -This will generate a binary called `./bin/etcd`. +which will generate a binary at `$GOPATH/bin/etcd` -_NOTE_: you need go 1.2+. Please check your installation with +_NOTE_: etcd requires go 1.2+. Please check your installation with ``` go version