Update excludes for toplevel glob

pull/6/head
Jeff Grafton 2017-01-03 14:43:05 -08:00
parent 20d221f75c
commit 61fcf21d73
1 changed files with 11 additions and 2 deletions

View File

@ -16,8 +16,17 @@ gcs_upload(
filegroup(
name = "package-srcs",
srcs = glob(["**"], exclude=["bazel-*/**", ".git/**"]),
tags = ["automanaged"],
srcs = glob(
["**"],
exclude = [
"bazel-*/**",
"_*/**",
".config/**",
".git/**",
".gsutil/**",
".make/**",
],
),
visibility = ["//visibility:private"],
)