This commit is contained in:
Yan Zhang 2017-12-04 10:16:08 +08:00
Родитель f0ab2a4ef8
Коммит c9186d67c5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -10,8 +10,8 @@ export class ArchetypeModule {
public static async generateFromArchetype(entry): Promise<void> {
let cwd: string = null;
const result = await VSCodeUI.openDialogForFolder({
openLabel: "Select Destination Folder",
defaultUri: entry && entry.fsPath ? vscode.Uri.file(entry.fsPath) : undefined,
openLabel: "Select Destination Folder",
});
if (result && result.fsPath) {
cwd = result.fsPath;