This commit is contained in:
abbycin 2019-06-13 16:54:12 +08:00
parent 330fcad680
commit a9d6b517e9
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "topjs-debugger", "name": "topjs-debugger",
"displayName": "TopJS Debugger", "displayName": "TopJS Debugger",
"version": "0.0.4", "version": "0.0.5",
"publisher": "AbbyCin", "publisher": "AbbyCin",
"description": "TopJS debugger extension for VS Code.", "description": "TopJS debugger extension for VS Code.",
"author": { "author": {

View File

@ -216,7 +216,7 @@ class TopJSDebugSession extends vscode_debugadapter.LoggingDebugSession {
} }
process.exit(1); process.exit(1);
}); });
this.log([args.runtimeExecutable, `--remote-debugging-port=${args.port}`, Path.basename(args.program)].join(' ')); this.log([args.runtimeExecutable, `--remote-debugging-port=${args.port}`, Path.basename(args.program), '\n'].join(' '));
} }
validateArgs(args) { validateArgs(args) {