Merge pull request #75061 from andrewsykim/fix-mac-bazel

fix hack/update-bazel.sh for mac os environments
pull/564/head
Kubernetes Prow Robot 2019-03-07 01:07:52 -08:00 committed by GitHub
commit ef5ba5cc8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ go install k8s.io/kubernetes/vendor/k8s.io/repo-infra/kazel
# Find all of the staging repos.
while IFS='' read -r repo; do staging_repos+=("${repo}"); done <\
<(cd "${KUBE_ROOT}/staging/src" && find k8s.io/ -mindepth 1 -maxdepth 1 -type d | LANG=C sort)
<(cd "${KUBE_ROOT}/staging/src" && find k8s.io -mindepth 1 -maxdepth 1 -type d | LANG=C sort)
# Save the staging repos into a Starlark list that can be used by Bazel rules.
(