Merge pull request #1410 from eparis/no-build-integration

Allow option to not build cmd/integration
This commit is contained in:
Filipe Brandenburger 2014-09-23 09:09:38 -07:00
commit e08dc20183

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