This commit is contained in:
Brandon Waterloo [MSFT] 2023-07-11 14:06:58 -04:00 коммит произвёл GitHub
Родитель 579c37eab3
Коммит 8ea320b85d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -91,7 +91,7 @@ export async function selectApplicationTemplate(context: IActionContext): Promis
.withArg('template').withArg('list')
.withArg('--output').withArg('json')
.build();
const result = await execAsync(command);
const result = await execAsync(command, azureCli.spawnOptions());
const templates = JSON.parse(result.stdout) as { name: string, description: string, repositoryPath: string }[];
const choices = templates.map(t => { return { label: t.name, detail: t.description, data: t.repositoryPath } as IAzureQuickPickItem<string>; });
choices.unshift({ label: vscode.l10n.t('Use another template...'), data: '', id: UseCustomTemplate });