提交 365c0348 编写于 作者: I isidor

fixes #89177

上级 8c8d0d6c
......@@ -596,8 +596,9 @@ export class DebugService implements IDebugService {
return Promise.resolve(TaskRunResult.Success);
}
await this.taskRunner.runTask(session.root, session.configuration.postDebugTask);
return this.taskRunner.runTaskAndCheckErrors(session.root, session.configuration.preLaunchTask, (msg, actions) => this.showError(msg, actions));
const root = session.root || this.contextService.getWorkspace();
await this.taskRunner.runTask(root, session.configuration.postDebugTask);
return this.taskRunner.runTaskAndCheckErrors(root, session.configuration.preLaunchTask, (msg, actions) => this.showError(msg, actions));
};
const extensionDebugSession = getExtensionHostDebugSession(session);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册