mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
13 lines
259 B
Bash
Executable File
13 lines
259 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ ! -h src/github.com/coreos/etcd ]; then
|
|
mkdir -p src/github.com/coreos/
|
|
ln -s ../../.. src/github.com/coreos/etcd
|
|
fi
|
|
|
|
export GOBIN=${PWD}/bin
|
|
export GOPATH=${PWD}
|
|
|
|
go install github.com/coreos/etcd
|
|
go install github.com/coreos/etcd/bench
|