build script: remove the _workspace from GOPATH

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.
This commit is contained in:
zachgersh 2016-03-21 08:34:07 -07:00
parent 6ef5ef1ec1
commit 8817b1b946

2
build
View File

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