Skip to content

Commit c255fd0

Browse files
committed
only check for source files in src/ and test/
1 parent 8edcad1 commit c255fd0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/check_source_files_in_bazel_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def check_sources_in_bazel_build(picotool_dir) -> int:
192192
missing_files = check_bazel_build_for_files(
193193
bazel_extensions_to_check=CPP_HEADER_EXTENSIONS + CPP_SOURCE_EXTENSIONS,
194194
files=source_files,
195-
bazel_dirs=[Path(SDK_ROOT)],
195+
bazel_dirs=[Path(SDK_ROOT, "src"), Path(SDK_ROOT, "test")],
196196
picotool_dir=picotool_dir,
197197
)
198198

0 commit comments

Comments
 (0)