Fix etcd install instructions.

pull/6/head
brendandburns 2014-09-16 16:27:30 -07:00
parent cacf888e49
commit 16c1e31162
1 changed files with 4 additions and 3 deletions

View File

@ -155,10 +155,11 @@ godep go tool cover -html=target/c.out
You need an etcd somewhere in your path. To get from head: 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 ./hack/install-etcd.sh
go install github.com/coreos/etcd sudo ln -s "third_party/bin/etcd" /usr/bin/etcd
sudo ln -s "$GOPATH/bin/etcd" /usr/bin/etcd
# Or just use the packaged one: # Or just use the packaged one:
sudo ln -s "$REPO_ROOT/target/bin/etcd" /usr/bin/etcd sudo ln -s "$REPO_ROOT/target/bin/etcd" /usr/bin/etcd
``` ```