Skip to content

Commit ce5e9e8

Browse files
authored
fix formatting
1 parent 961ff68 commit ce5e9e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/parts/debug/node/debugAdapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ export class DebugAdapter extends StreamDebugAdapter {
285285
if (this.adapterExecutable.command === 'node' && this.outputService) {
286286
if (Array.isArray(this.adapterExecutable.args) && this.adapterExecutable.args.length > 0) {
287287
const child = cp.fork(this.adapterExecutable.args[0], this.adapterExecutable.args.slice(1), {
288-
execArgv: [ '-e', 'delete process.env.ELECTRON_RUN_AS_NODE;require(process.argv[1])' ].concat(process.execArgv || []),
288+
execArgv: ['-e', 'delete process.env.ELECTRON_RUN_AS_NODE;require(process.argv[1])'].concat(process.execArgv || []),
289289
silent: true
290290
});
291291
if (!child.pid) {

0 commit comments

Comments
 (0)