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 da46318 commit 63152a2Copy full SHA for 63152a2
tools/platformio-build.py
@@ -179,7 +179,10 @@ def add_tinyuf2_extra_image():
179
libs = []
180
181
variants_dir = join(FRAMEWORK_DIR, "variants")
182
-build_variants_dir = join(board_config.get("build.variants_dir"))
+try:
183
+ build_variants_dir = join(board_config.get("build.variants_dir"))
184
+except:
185
+ build_variants_dir=""
186
187
if "build.variants_dir" in board_config:
188
if len(build_variants_dir) > 1:
0 commit comments