Browse Source

ignore the emacs temp files

Getty Ritter 1 year ago
parent
commit
a2caeb0f16
1 changed files with 2 additions and 2 deletions
  1. 2 2
      BUILD.bazel

+ 2 - 2
BUILD.bazel

@@ -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)",