Skip to content

Commit b283b29

Browse files
committed
rawDebugSession: extensionDevelopmentPath is array. Fixes microsoft#80410
1 parent 827796e commit b283b29

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/vs/workbench/contrib/debug/browser/rawDebugSession.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,13 @@ export class RawDebugSession {
587587
} else {
588588
args[key] = [value];
589589
}
590-
590+
} else if (key === 'extensionDevelopmentPath') {
591+
const v = args[key];
592+
if (v) {
593+
v.push(value);
594+
} else {
595+
args[key] = [value];
596+
}
591597
} else {
592598
(<any>args)[key] = value;
593599
}

0 commit comments

Comments
 (0)