Skip to content

Commit 0bc6934

Browse files
committed
Go: rename pkg_files to something less confusing
1 parent 4ae82ac commit 0bc6934

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

go/codeql-tools/BUILD.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_filegroup", "pkg_files")
22

33
pkg_files(
4-
name = "executables",
4+
name = "sh-files",
55
srcs = glob(["*.sh"]),
66
attributes = pkg_attributes(mode = "0755"),
77
)
88

99
pkg_files(
10-
name = "non-executables",
10+
name = "non-sh-files",
1111
srcs = glob(
1212
["*"],
1313
exclude = [
@@ -20,8 +20,8 @@ pkg_files(
2020
pkg_filegroup(
2121
name = "codeql-tools",
2222
srcs = [
23-
":executables",
24-
":non-executables",
23+
":non-sh-files",
24+
":sh-files",
2525
],
2626
prefix = "tools",
2727
visibility = ["//go:__pkg__"],

0 commit comments

Comments
 (0)