Skip to content

Commit eea384d

Browse files
committed
refactor(debugger): Move debugger.modifiers one level higher to shorten the commandline
1 parent f4681eb commit eea384d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

vscode-client/debugmanager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,15 +361,15 @@ export class DebugManager {
361361

362362
const separator = included.find((s) => s.indexOf(":") >= 0) === undefined ? ":" : ";";
363363

364-
args.push(`robotcode.debugger.modifiers.ByLongName${separator}${included.join(separator)}`);
364+
args.push(`robotcode.modifiers.ByLongName${separator}${included.join(separator)}`);
365365
}
366366

367367
if (excluded.length > 0) {
368368
args.push("--prerunmodifier");
369369

370370
const separator = included.find((s) => s.indexOf(":") >= 0) === undefined ? ":" : ";";
371371

372-
args.push(`robotcode.debugger.modifiers.ExcludedByLongName${separator}${excluded.join(separator)}`);
372+
args.push(`robotcode.modifiers.ExcludedByLongName${separator}${excluded.join(separator)}`);
373373
}
374374

375375
const testLaunchConfig: { [Key: string]: unknown } =

0 commit comments

Comments
 (0)