Commit f9c1355b authored by Jeff Grafton's avatar Jeff Grafton

kazel: skip third_party/etcd.*

parent c8cded58
{
"GoPrefix": "k8s.io/kubernetes",
"SkippedPaths": [
"^_.*"
"^_.*",
"^third_party/etcd.*"
],
"AddSourcesRules": true,
"K8sOpenAPIGen": true
......
......@@ -4,8 +4,13 @@ licenses(["notice"])
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
srcs = glob(
["**"],
exclude = [
"etcd*/**",
"etcd*.tar.gz",
],
),
visibility = ["//visibility:private"],
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment