Merge pull request #1609 from prupipho/jud/1585-EmptyPathIfNoPathConfig-II

- fix defaulting to the path of the user
This commit is contained in:
David Gómez 2020-09-17 16:06:51 +02:00 коммит произвёл GitHub
Родитель a0138ab825 21403d86c8
Коммит 2e6b86289a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -47,7 +47,9 @@ export class Defaults extends WizardServant {
private getDefaultProjectPath(): string {
const projectPath = vscode.workspace.getConfiguration().get<string>("wts.changeSaveToLocation");
return projectPath ?? os.homedir();
return (projectPath !== undefined && projectPath !== "")
? projectPath
: os.homedir();
}
private async inferProjectName(outputPath: string): Promise<string> {