Skip to content

Commit ef5ba5c

Browse files
authored
Merge pull request kubernetes#75061 from andrewsykim/fix-mac-bazel
fix hack/update-bazel.sh for mac os environments
2 parents 9ad296a + a6c3a26 commit ef5ba5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/update-bazel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ go install k8s.io/kubernetes/vendor/k8s.io/repo-infra/kazel
3131

3232
# Find all of the staging repos.
3333
while IFS='' read -r repo; do staging_repos+=("${repo}"); done <\
34-
<(cd "${KUBE_ROOT}/staging/src" && find k8s.io/ -mindepth 1 -maxdepth 1 -type d | LANG=C sort)
34+
<(cd "${KUBE_ROOT}/staging/src" && find k8s.io -mindepth 1 -maxdepth 1 -type d | LANG=C sort)
3535

3636
# Save the staging repos into a Starlark list that can be used by Bazel rules.
3737
(

0 commit comments

Comments
 (0)