We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d9d4ef + e457d83 commit 3b529b4Copy full SHA for 3b529b4
circuitpython_build_tools/build.py
@@ -113,9 +113,9 @@ def get_package_info(library_path, package_folder_prefix):
113
for pattern in GLOB_PATTERNS:
114
glob_search.extend(list(lib_path.rglob(pattern)))
115
116
+ package_info["is_package"] = False
117
for file in glob_search:
118
if file.parts[parent_idx] != "examples":
- package_info["is_package"] = False
119
if len(file.parts) > parent_idx + 1:
120
for prefix in package_folder_prefix:
121
if file.parts[parent_idx].startswith(prefix):
0 commit comments