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 5b43aea commit 2b3b2caCopy full SHA for 2b3b2ca
builder/frameworks/espidf.py
@@ -213,8 +213,8 @@ def load_custom_sdkconfig_file():
213
print(f"Error decoding response from {file_entry}: {e}")
214
return ""
215
216
- # Treat as local file if explicitly file:// or a non-URL token that isn't a flag
217
- if "file://" in file_entry or ("://" not in file_entry and "=" not in file_entry):
+ # Handle local files
+ if "file://" in file_entry:
218
file_ref = file_entry[7:] if file_entry.startswith("file://") else file_entry
219
220
if os.path.isabs(file_ref):
0 commit comments