build script: remove the _workspace from GOPATH
authorzachgersh <zachgersh@gmail.com>
Mon, 21 Mar 2016 15:34:07 +0000 (08:34 -0700)
committerzachgersh <zachgersh@gmail.com>
Mon, 21 Mar 2016 16:32:09 +0000 (09:32 -0700)
Now that we no longer use godeps to manage
dependencies we can safely remove this.
Dependencies in the vendor directory will
automagically be picked up.

build

diff --git a/build b/build
index e921714..f987dbb 100755 (executable)
--- a/build
+++ b/build
@@ -10,7 +10,7 @@ if [ ! -h gopath/src/${REPO_PATH} ]; then
 fi
 
 export GOBIN=${PWD}/bin
-export GOPATH=${PWD}/gopath:$(pwd)/Godeps/_workspace
+export GOPATH=${PWD}/gopath
 
 echo "Building API"
 go build ${REPO_PATH}/libcni