Make models.BUILD filegroup include everything but metadata files and archives.

Change: 144127608
This commit is contained in:
Andrew Harp 2017-01-10 14:20:25 -08:00 committed by TensorFlower Gardener
parent 61a6797c4f
commit 64c6ecdfd1

View File

@ -6,8 +6,13 @@ filegroup(
name = "model_files", name = "model_files",
srcs = glob( srcs = glob(
[ [
"**/*.pb", "**/*",
"**/*.txt", ],
exclude = [
"**/BUILD",
"**/WORKSPACE",
"**/LICENSE",
"**/*.zip",
], ],
), ),
) )