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 aa3712c commit 4c79009Copy full SHA for 4c79009
src/espIdf/setTarget/DevkitsCommand.ts
@@ -67,9 +67,12 @@ export class DevkitsCommand {
67
"esp_detect_config.py"
68
);
69
70
- // Check if esp_detect_config.py exists
71
if (!fs.existsSync(scriptPath)) {
72
- throw new Error(`esp_detect_config.py not found at path: ${scriptPath}`);
+ const infoMsg = `Devkit detection script not available at: ${scriptPath}. A default list of targets will be displayed instead.`;
+ Logger.info(infoMsg);
73
+ OutputChannel.appendLine(infoMsg, "ESP Detect Config");
74
+ OutputChannel.show();
75
+ return;
76
}
77
78
const openOcdScriptsPath = await getOpenOcdScripts(this.workspaceRoot);
0 commit comments