From 78f48b69a43d836f197ac5eac3e1fdcccb7cf697 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Thu, 12 Aug 2021 10:16:54 -0700 Subject: [PATCH] Add new extensions location var (#16747) --- src/vs/platform/environment/common/environmentService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/platform/environment/common/environmentService.ts b/src/vs/platform/environment/common/environmentService.ts index 9fc2f174a9..c04db95f26 100644 --- a/src/vs/platform/environment/common/environmentService.ts +++ b/src/vs/platform/environment/common/environmentService.ts @@ -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; }