summaryrefslogtreecommitdiff
path: root/packages/server/src/config/config.ts
diff options
context:
space:
mode:
authorOlcan <[email protected]>2025-04-25 14:05:58 -0700
committerGitHub <[email protected]>2025-04-25 14:05:58 -0700
commit7087c0508ea9260abaa31b0cd8f206d3b11cf21b (patch)
tree748adf1d30936ec421306bf4ad3664728011269d /packages/server/src/config/config.ts
parent1a64268bb058049d94a9265c839265607606ec88 (diff)
more consistent confirmations, TODO to improve write confirmations, drop "description" from execution confirmation, add confirmation to new (still dummy) shell tool (#176)
Diffstat (limited to 'packages/server/src/config/config.ts')
-rw-r--r--packages/server/src/config/config.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/config/config.ts b/packages/server/src/config/config.ts
index 8a49380c..498c7257 100644
--- a/packages/server/src/config/config.ts
+++ b/packages/server/src/config/config.ts
@@ -147,7 +147,7 @@ function createToolRegistry(config: Config): ToolRegistry {
// use ShellTool (next-gen TerminalTool) if environment variable is set
if (process.env.SHELL_TOOL) {
- tools.push(new ShellTool(targetDir, config));
+ tools.push(new ShellTool(config));
} else {
tools.push(new TerminalTool(targetDir, config));
}