Skip to content

Commit f7340bd

Browse files
committed
fix openocd args order
1 parent 076ffb9 commit f7340bd

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

src/espIdf/openOcd/openOcdManager.ts

+13-7
Original file line numberDiff line numberDiff line change
@@ -182,18 +182,13 @@ export class OpenOCDManager extends EventEmitter {
182182
);
183183
}
184184

185-
const openOcdArgs = [];
185+
const openOcdArgs: string[] = [];
186186
const openOcdDebugLevel = idfConf.readParameter(
187187
"idf.openOcdDebugLevel",
188188
this.workspace
189189
) as string;
190190
openOcdArgs.push(`-d${openOcdDebugLevel}`);
191191

192-
openOcdConfigFilesList.forEach((configFile) => {
193-
openOcdArgs.push("-f");
194-
openOcdArgs.push(configFile);
195-
});
196-
197192
const addLaunchArgs = idfConf.readParameter(
198193
"idf.openOcdLaunchArgs",
199194
this.workspace
@@ -205,6 +200,16 @@ export class OpenOCDManager extends EventEmitter {
205200
});
206201
}
207202

203+
openOcdConfigFilesList.forEach((configFile) => {
204+
const isFileAlreadyInArgs = openOcdArgs.some((arg) =>
205+
arg.includes(configFile)
206+
);
207+
if (!isFileAlreadyInArgs) {
208+
openOcdArgs.push("-f");
209+
openOcdArgs.push(configFile);
210+
}
211+
});
212+
208213
this.server = spawn("openocd", openOcdArgs, {
209214
cwd: this.workspace.fsPath,
210215
env: modifiedEnv,
@@ -250,7 +255,8 @@ export class OpenOCDManager extends EventEmitter {
250255
if (!signal && code && code !== 0) {
251256
Logger.error(
252257
`OpenOCD Exit with non-zero error code ${code}`,
253-
new Error("Spawn exit with non-zero" + code), "OpenOCDManager close"
258+
new Error("Spawn exit with non-zero" + code),
259+
"OpenOCDManager close"
254260
);
255261
OutputChannel.appendLine(
256262
`OpenOCD Exit with non-zero error code ${code}`,

0 commit comments

Comments
 (0)