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)
This commit is contained in:
Eric Paris 2014-09-23 09:58:32 -04:00
parent 501144c425
commit a96d16f8c0

View File

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