diff --git a/src/vs/workbench/parts/debug/electron-browser/rawDebugSession.ts b/src/vs/workbench/parts/debug/electron-browser/rawDebugSession.ts index dd96720d946..1a78245b64d 100644 --- a/src/vs/workbench/parts/debug/electron-browser/rawDebugSession.ts +++ b/src/vs/workbench/parts/debug/electron-browser/rawDebugSession.ts @@ -469,6 +469,7 @@ export class RawDebugSession implements debug.ISession { if (request.command === 'runInTerminal') { this._debugger.runInTerminal(request.arguments).then(_ => { + response.body = {}; this.debugAdapter.sendResponse(response); }, err => { response.success = false;