From 16c1e31162257ecae11d6f84e6e3ad81364f50fa Mon Sep 17 00:00:00 2001 From: brendandburns Date: Tue, 16 Sep 2014 16:27:30 -0700 Subject: [PATCH] Fix etcd install instructions. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 590de07f51..2d2316af53 100644 --- a/README.md +++ b/README.md @@ -155,10 +155,11 @@ godep go tool cover -html=target/c.out You need an etcd somewhere in your path. To get from head: +*Important Note* etcd is currently broken at head. You need to build using the ```hack/install-etcd.sh``` script. + ``` -go get github.com/coreos/etcd -go install github.com/coreos/etcd -sudo ln -s "$GOPATH/bin/etcd" /usr/bin/etcd +./hack/install-etcd.sh +sudo ln -s "third_party/bin/etcd" /usr/bin/etcd # Or just use the packaged one: sudo ln -s "$REPO_ROOT/target/bin/etcd" /usr/bin/etcd ```