From a96d16f8c08f6586b392f6c827a990c4f8db8573 Mon Sep 17 00:00:00 2001 From: Eric Paris Date: Tue, 23 Sep 2014 09:58:32 -0400 Subject: [PATCH] Allow option to not build cmd/integration In case it was built seperately (as in, on Fedora, we cannot use go install as we do not have write permission to portions of the GOPATH) --- hack/test-integration.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hack/test-integration.sh b/hack/test-integration.sh index 5ad11efe591..bc87e6c4233 100755 --- a/hack/test-integration.sh +++ b/hack/test-integration.sh @@ -28,7 +28,10 @@ function cleanup() # Stop right away if the build fails set -e -$(dirname $0)/build-go.sh cmd/integration + +if [[ -z $KUBE_NO_BUILD_INTEGRATION ]]; then + $(dirname $0)/build-go.sh cmd/integration +fi start_etcd