mirror of https://gitee.com/bigwinds/arangodb
15 lines
279 B
Bash
Executable File
15 lines
279 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 clean -i -x github.com/coreos/etcd
|
|
go clean -i -x github.com/coreos/etcd/bench
|
|
|
|
rm -rf src
|