|
@@ -14,12 +14,12 @@ py_binary(
|
|
|
|
|
|
filegroup(
|
|
|
name = "data",
|
|
|
- srcs=glob(["quips/*", "quotes/*", "works/**/*", "works.json"]),
|
|
|
+ srcs=glob(["quips/*", "quotes/*", "works/**/*", "works.json"], exclude=["*~"]),
|
|
|
)
|
|
|
|
|
|
genrule(
|
|
|
name = "out",
|
|
|
- srcs = [":data"] + glob(["templates/*.mustache", "static/*"], exclude=["*~"]),
|
|
|
+ srcs = [":data"] + glob(["templates/*.mustache", "static/*"]),
|
|
|
tools = [":main"],
|
|
|
outs = ["output"],
|
|
|
cmd = "$(location :main) $(location output) $(locations :data)",
|