We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc4332 commit fe89eefCopy full SHA for fe89eef
src/node/services/tools/bash.ts
@@ -239,16 +239,6 @@ export const createBashTool: ToolFactory = (config: ToolConfiguration) => {
239
240
// Handle background execution
241
if (run_in_background) {
242
- // TODO: Add Windows support for background processes (process groups work differently)
243
- if (process.platform === "win32") {
244
- return {
245
- success: false,
246
- error: "Background execution is not yet supported on Windows",
247
- exitCode: -1,
248
- wall_duration_ms: 0,
249
- };
250
- }
251
-
252
if (!config.workspaceId || !config.backgroundProcessManager || !config.runtime) {
253
return {
254
success: false,
0 commit comments