瀏覽代碼

ignore the emacs temp files

Getty Ritter 2 年之前
父節點
當前提交
a2caeb0f16
共有 1 個文件被更改,包括 2 次插入2 次删除
  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)",