summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-05-16 10:14:00 +0700
committerhathach <[email protected]>2023-05-16 10:14:00 +0700
commit116a258858ef3c58639d00346e197bd07ad86952 (patch)
tree885ddc96d474aebb7a2d13f2398502ec44c2e3aa /tools
parent792cf95f2d20be2908f87f4960edadcf10c207dd (diff)
fix nrf build
Diffstat (limited to 'tools')
-rw-r--r--tools/build_family.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/build_family.py b/tools/build_family.py
index 1fc25907b..9b612b4cb 100644
--- a/tools/build_family.py
+++ b/tools/build_family.py
@@ -42,9 +42,9 @@ if __name__ == '__main__':
# If examples are not specified in arguments, build all
all_examples = []
for d in os.scandir("examples"):
- if d.is_dir() and 'cmake-build' not in d.name and 'cmake' not in d.name:
+ if d.is_dir() and 'cmake' not in d.name:
for entry in os.scandir(d.path):
- if entry.is_dir():
+ if entry.is_dir() and 'cmake' not in entry.name:
all_examples.append(d.name + '/' + entry.name)
filter_with_input(all_examples)
all_examples.sort()