提交 f75b94c9 编写于 作者: L Logan Ramos

Don't allow users to specify files as working directories

上级 350d3212
......@@ -68,7 +68,12 @@ export class TerminalProcess implements ITerminalChildProcess, IDisposable {
conptyInheritCursor: true
};
const cwdVerification = stat(cwd).catch((err) => {
const cwdVerification = stat(cwd).then(stat => {
if (!stat.isDirectory()) {
return Promise.reject(SHELL_CWD_INVALID_EXIT_CODE);
}
return;
}).catch((err) => {
if (err && err.code === 'ENOENT') {
// So we can include in the error message the specified CWD
shellLaunchConfig.cwd = cwd;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册