diff options
| author | hathach <[email protected]> | 2024-11-11 21:40:03 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-11-11 21:40:03 +0700 |
| commit | 65e741937a4a6e5849f76fa94eca3daec63dbb4a (patch) | |
| tree | f008f3ce72405cd029d0bc8518a6f3da4f34c136 | |
| parent | 3c564fd947bbaa9042930afc83ed1afd5a073242 (diff) | |
fix build filter for esp32
| -rwxr-xr-x | tools/build_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_utils.py b/tools/build_utils.py index b4a1dc096..2998f940d 100755 --- a/tools/build_utils.py +++ b/tools/build_utils.py @@ -40,7 +40,7 @@ def skip_example(example, board): for line in mk_contents.splitlines(): match = re.search(r'set\(IDF_TARGET\s+"([^"]+)"\)', line) if match: - mcu = match.group(1) + mcu = match.group(1).upper() break else: for token in mk_contents.split(): |
