fix(build): export GOPATH

Major mistake. GOPATH must be exported for go get/go build to work.
This commit is contained in:
Brandon Philips 2013-07-10 16:01:09 -07:00
parent 59ac6e85a9
commit 01e5d41f91

2
build
View File

@ -1,7 +1,7 @@
#!/bin/sh
ETCD_PACKAGE=github.com/coreos/etcd
GOPATH=${PWD}
export GOPATH=${PWD}
SRC_DIR=$GOPATH/src
ETCD_DIR=$SRC_DIR/$ETCD_PACKAGE