mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 11:21:47 +00:00
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:
parent
501144c425
commit
a96d16f8c0
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user