fix: use env_keys in bundled extensions (#2307)

This commit is contained in:
Zaki Ali
2025-04-22 18:08:16 -07:00
committed by GitHub
parent a2a155c2fc
commit 7ed8e4211d
@@ -15,6 +15,7 @@ type BundledExtension = {
args?: string[];
uri?: string;
envs?: { [key: string]: string };
env_keys?: Array<string>;
timeout?: number;
allow_configure?: boolean;
};
@@ -65,6 +66,7 @@ export async function syncBundledExtensions(
cmd: bundledExt.cmd,
args: bundledExt.args,
envs: bundledExt.envs,
env_keys: bundledExt.env_keys,
bundled: true,
};
break;