Ver Fonte

fix(build): export GOPATH

Major mistake. GOPATH must be exported for go get/go build to work.
Brandon Philips há 13 anos atrás
pai
commit
01e5d41f91
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      build

+ 1 - 1
build

@@ -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