提交 9c574b15 编写于 作者: I isidor

debug: do not complain for cwd conversion to absolute path

上级 e9632189
......@@ -251,7 +251,7 @@ export class ConfigurationManager {
this.configuration.program = this.resolvePath(this.configuration.program, silent);
this.configuration.stopOnEntry = this.configuration.stopOnEntry === undefined ? false : this.configuration.stopOnEntry;
this.configuration.args = this.configuration.args && this.configuration.args.length > 0 ? this.systemVariables.resolve(this.configuration.args) : null;
this.configuration.cwd = this.resolvePath(this.configuration.cwd || '.', silent);
this.configuration.cwd = this.resolvePath(this.configuration.cwd || '.', true);
this.configuration.runtimeExecutable = this.resolvePath(this.configuration.runtimeExecutable, silent);
this.configuration.runtimeArgs = this.configuration.runtimeArgs && this.configuration.runtimeArgs.length > 0 ? this.configuration.runtimeArgs : null;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册