We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7841d57 commit d5705a6Copy full SHA for d5705a6
.gazelcfg.json
@@ -9,5 +9,8 @@
9
"./federation",
10
"./examples"
11
],
12
+ "SkippedPaths": [
13
+ "^_.*"
14
+ ],
15
"AddSourcesRules": true
16
}
hack/lib/golang.sh
@@ -307,6 +307,12 @@ kube::golang::create_gopath_tree() {
307
if [[ ! -e "${go_pkg_dir}" || "$(readlink ${go_pkg_dir})" != "${KUBE_ROOT}" ]]; then
308
ln -snf "${KUBE_ROOT}" "${go_pkg_dir}"
309
fi
310
+
311
+ cat >"${KUBE_GOPATH}/BUILD" <<EOF
312
+# This dummy BUILD file prevents Bazel from trying to descend through the
313
+# infinite loop created by the symlink at
314
+# ${go_pkg_dir}
315
+EOF
316
317
318
# Ensure the godep tool exists and is a viable version.
0 commit comments