提交 292e59f3 编写于 作者: I isidor

fixes #70429

上级 6dfc7094
...@@ -601,8 +601,8 @@ class Launch extends AbstractLaunch implements ILaunch { ...@@ -601,8 +601,8 @@ class Launch extends AbstractLaunch implements ILaunch {
revealIfVisible: true revealIfVisible: true
}, },
}, sideBySide ? SIDE_GROUP : ACTIVE_GROUP).then(editor => ({ editor, created }))); }, sideBySide ? SIDE_GROUP : ACTIVE_GROUP).then(editor => ({ editor, created })));
}, (error) => { }, (error: Error) => {
throw new Error(nls.localize('DebugConfig.failed', "Unable to create 'launch.json' file inside the '.vscode' folder ({0}).", error)); throw new Error(nls.localize('DebugConfig.failed', "Unable to create 'launch.json' file inside the '.vscode' folder ({0}).", error.message));
}); });
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册