Add new extensions location var (#16747)

This commit is contained in:
Charles Gagnon
2021-08-12 10:16:54 -07:00
committed by GitHub
parent 74938d563d
commit 78f48b69a4

View File

@@ -144,7 +144,7 @@ export abstract class AbstractNativeEnvironmentService implements INativeEnviron
return resolve(cliExtensionsDir);
}
const vscodeExtensions = env['VSCODE_EXTENSIONS'];
const vscodeExtensions = env['ADS_EXTENSIONS'] || env['VSCODE_EXTENSIONS']; // {{SQL CARBON EDIT}} Add another option
if (vscodeExtensions) {
return vscodeExtensions;
}