From 8817b1b9462c99c3220b1747b700eb09bf7f34e8 Mon Sep 17 00:00:00 2001 From: zachgersh Date: Mon, 21 Mar 2016 08:34:07 -0700 Subject: [PATCH] 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. --- build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build b/build index e9217147..f987dbb6 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