Skip to content

Commit

Permalink
rawDebugSession: extensionDevelopmentPath is array. Fixes #80410
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Sep 5, 2019
1 parent 827796e commit b283b29
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/vs/workbench/contrib/debug/browser/rawDebugSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,13 @@ export class RawDebugSession {
} else {
args[key] = [value];
}

} else if (key === 'extensionDevelopmentPath') {
const v = args[key];
if (v) {
v.push(value);
} else {
args[key] = [value];
}
} else {
(<any>args)[key] = value;
}
Expand Down

0 comments on commit b283b29

Please sign in to comment.