Skip to content

Commit 1d4e9ff

Browse files
committed
Fix order of srcs and parent package for bazel
1 parent b7b933f commit 1d4e9ff

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

pkg/config/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ schema_template_config(
3838

3939
schema_template_config(
4040
name = "system_probe_config",
41+
srcs = ["//pkg/config/schema:system_probe_schema_subfiles"],
4142
out = "system-probe.yaml",
4243
build_type = "system-probe",
4344
os_target = _OS_TARGET,

pkg/config/schema/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ filegroup(
5050
filegroup(
5151
name = "system_probe_schema_subfiles",
5252
srcs = [
53-
"yaml/system-probe_schema.yaml",
5453
"yaml/system-probe-cws.yaml",
5554
"yaml/system-probe-usm.yaml",
55+
"yaml/system-probe_schema.yaml",
5656
],
5757
visibility = ["//visibility:public"],
5858
)

0 commit comments

Comments
 (0)