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.
1 parent e2f8a4e commit 5e62273Copy full SHA for 5e62273
tools/platformio-build.py
@@ -176,7 +176,10 @@ def add_tinyuf2_extra_image():
176
libs = []
177
178
variants_dir = join(FRAMEWORK_DIR, "variants")
179
-build_variants_dir = join(board_config.get("build.variants_dir"))
+try:
180
+ build_variants_dir = join(board_config.get("build.variants_dir"))
181
+except:
182
+ build_variants_dir=""
183
184
if "build.variants_dir" in board_config:
185
if len(build_variants_dir) > 1:
0 commit comments