add sandboxImageName in package.json (#1219)

This commit is contained in:
Leo
2025-06-19 19:50:34 +01:00
committed by GitHub
parent 43203926b8
commit 0ebac0b896
5 changed files with 6 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ export async function loadSandboxConfig(
const image =
argv['sandbox-image'] ??
process.env.GEMINI_SANDBOX_IMAGE ??
packageJson?.config?.sandboxImageUri;
packageJson?.config?.sandboximageName;
return command && image ? { command, image } : undefined;
}