Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
extractor-pack
1 parent 19b2e56 commit bfa189eCopy full SHA for bfa189e
1 file changed
go/BUILD.bazel
@@ -21,13 +21,23 @@ py_binary(
21
deps = ["@rules_python//python/runfiles"],
22
)
23
24
+# this is an internal copy of the dbscheme to be used by extractor-pack
25
+# this allows the extractor-pack target to be independent and up-to-date with respect to
26
+# having run //go:gen to update the checked in files
27
+genrule(
28
+ name = "dbscheme",
29
+ outs = ["go.dbscheme"],
30
+ cmd = "$(execpath //go/extractor/cli/go-gen-dbscheme) $@",
31
+ tools = ["//go/extractor/cli/go-gen-dbscheme"],
32
+)
33
+
34
pkg_files(
35
name = "resources",
36
srcs = [
37
"LICENSE",
38
"codeql-extractor.yml",
- "ql/lib/go.dbscheme",
39
"ql/lib/go.dbscheme.stats",
40
+ ":dbscheme",
41
],
42
43
0 commit comments