From a6c3a26c3451c9469a7c4e1855f0c389f2b17b30 Mon Sep 17 00:00:00 2001 From: Andrew Kim Date: Wed, 6 Mar 2019 15:47:09 -0500 Subject: [PATCH] fix hack/update-bazel.sh for mac os environments --- hack/update-bazel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/update-bazel.sh b/hack/update-bazel.sh index 6a85f0a923c..7f5c9328a22 100755 --- a/hack/update-bazel.sh +++ b/hack/update-bazel.sh @@ -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. (