diff options
| author | Brandon Keiji <[email protected]> | 2025-06-19 12:19:39 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-19 12:19:39 -0700 |
| commit | 10a83a6395b70f21b01da99d0992c78d0354a8dd (patch) | |
| tree | 5fdfad4781ee796fbfd2d218fd622bb7ac681c17 /packages/cli/src/config/sandboxConfig.ts | |
| parent | 0ebac0b8964c5ccc76962fed6a31465065a6798d (diff) | |
refactor: remove docker tagging step from sandbox publishing (#1223)
Diffstat (limited to 'packages/cli/src/config/sandboxConfig.ts')
| -rw-r--r-- | packages/cli/src/config/sandboxConfig.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/config/sandboxConfig.ts b/packages/cli/src/config/sandboxConfig.ts index fc444af6..e0adf0ac 100644 --- a/packages/cli/src/config/sandboxConfig.ts +++ b/packages/cli/src/config/sandboxConfig.ts @@ -91,7 +91,7 @@ export async function loadSandboxConfig( const image = argv['sandbox-image'] ?? process.env.GEMINI_SANDBOX_IMAGE ?? - packageJson?.config?.sandboximageName; + packageJson?.config?.sandboxImageUri; return command && image ? { command, image } : undefined; } |
