Skip to content

Commit e05a450

Browse files
committed
firmware.wifi: Ignore 'assert' directory
Signed-off-by: Hector Martin <[email protected]>
1 parent 3e7950b commit e05a450

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/firmware/wifi.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ def load(self, source_path):
4141
for dirpath, dirnames, filenames in os.walk(source_path):
4242
if "perf" in dirnames:
4343
dirnames.remove("perf")
44+
if "assert" in dirnames:
45+
dirnames.remove("assert")
4446
subpath = dirpath.lstrip(source_path)
4547
for name in sorted(filenames):
4648
if not any(name.endswith("." + i) for i in self.EXTMAP):

0 commit comments

Comments
 (0)