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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
}