Specify file extension when launching cloud console

This commit is contained in:
Alex Weininger 2023-05-17 17:01:53 -07:00
Родитель 4113ff14fa
Коммит baeead0440
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3F842DF0CD08737F
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -272,7 +272,7 @@ export function createCloudConsole(api: AzureAccountExtensionApi, osName: OSName
// open terminal
let shellPath: string = path.join(ext.context.asAbsolutePath('bin'), `node.${isWindows ? 'bat' : 'sh'}`);
let cloudConsoleLauncherPath: string = path.join(ext.context.asAbsolutePath('dist'), 'cloudConsoleLauncher');
let cloudConsoleLauncherPath: string = path.join(ext.context.asAbsolutePath('dist'), 'cloudConsoleLauncher.js');
if (isWindows) {
cloudConsoleLauncherPath = cloudConsoleLauncherPath.replace(/\\/g, '\\\\');
}