summaryrefslogtreecommitdiff
path: root/packages/cli/src/utils/sandbox.ts
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-05-11 12:34:41 -0700
committerN. Taylor Mullen <[email protected]>2025-05-11 12:35:55 -0700
commitcf91f72c5c0079ec4b5db67d0f8fcac043d31088 (patch)
treeaa90476c90ee87810f4f8b1c0086619e680aeba7 /packages/cli/src/utils/sandbox.ts
parentdcb67c32a5e246f9df64a18399c6a13051db7f30 (diff)
Remove terminal tool and dependencies.
- We now solely use the shell tool. This deletes all content around the legacy terminal tool so we can focus on improving the new Shell tool. - Remove instances from sandboxing, tests, utilities etc.
Diffstat (limited to 'packages/cli/src/utils/sandbox.ts')
-rw-r--r--packages/cli/src/utils/sandbox.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/cli/src/utils/sandbox.ts b/packages/cli/src/utils/sandbox.ts
index 3e766755..cbd0a6c6 100644
--- a/packages/cli/src/utils/sandbox.ts
+++ b/packages/cli/src/utils/sandbox.ts
@@ -332,11 +332,6 @@ export async function start_sandbox(sandbox: string) {
args.push('--env', `GEMINI_CODE_MODEL=${process.env.GEMINI_CODE_MODEL}`);
}
- // copy TERMINAL_TOOL to optionally enable shell tool
- if (process.env.TERMINAL_TOOL) {
- args.push('--env', `TERMINAL_TOOL=${process.env.TERMINAL_TOOL}`);
- }
-
// copy TERM and COLORTERM to try to maintain terminal setup
if (process.env.TERM) {
args.push('--env', `TERM=${process.env.TERM}`);