Skip to content

Commit

Permalink
BUILD: fix gaffe in glob pattern when including *.sv and *.v files
Browse files Browse the repository at this point in the history
Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Aug 5, 2024
1 parent 409fa95 commit 69eec04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ mock_files = [
]

all_source_files = sorted(glob(
include = ["rtl/*.(sv|v)"],
include = ["rtl/*.sv", "rtl/*.v"],
exclude = ([f.replace("mock/", "rtl/") for f in mock_files] +
["rtl/ClockSourceAtFreqMHz.v",
"rtl/SimJTAG.v",
Expand Down

0 comments on commit 69eec04

Please sign in to comment.