mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Go: rename pkg_files to something less confusing
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_filegroup", "pkg_files")
|
||||
|
||||
pkg_files(
|
||||
name = "executables",
|
||||
name = "sh-files",
|
||||
srcs = glob(["*.sh"]),
|
||||
attributes = pkg_attributes(mode = "0755"),
|
||||
)
|
||||
|
||||
pkg_files(
|
||||
name = "non-executables",
|
||||
name = "non-sh-files",
|
||||
srcs = glob(
|
||||
["*"],
|
||||
exclude = [
|
||||
@@ -20,8 +20,8 @@ pkg_files(
|
||||
pkg_filegroup(
|
||||
name = "codeql-tools",
|
||||
srcs = [
|
||||
":executables",
|
||||
":non-executables",
|
||||
":non-sh-files",
|
||||
":sh-files",
|
||||
],
|
||||
prefix = "tools",
|
||||
visibility = ["//go:__pkg__"],
|
||||
|
||||
Reference in New Issue
Block a user