提交 1a20ec91 编写于 作者: J Joao Moreno

💄

上级 56539e2e
......@@ -328,13 +328,8 @@ export class CommandCenter {
}
const config = workspace.getConfiguration('git');
let value;
const userInputtedDirectory = config.get<string>('defaultCloneDirectory');
if (userInputtedDirectory !== undefined && userInputtedDirectory.match(/^~/)) {
value = userInputtedDirectory.replace(/^~/, os.homedir());
} else {
value = config.get<string>('defaultCloneDirectory') || os.homedir();
}
let value = config.get<string>('defaultCloneDirectory') || os.homedir();
value = value.replace(/^~/, os.homedir());
const parentPath = await window.showInputBox({
prompt: localize('parent', "Parent Directory"),
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册