From: zachgersh Date: Mon, 21 Mar 2016 15:34:07 +0000 (-0700) Subject: build script: remove the _workspace from GOPATH X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=8817b1b9462c99c3220b1747b700eb09bf7f34e8;p=cni.git 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. --- diff --git a/build b/build index e921714..f987dbb 100755 --- 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