Skip to content

Commit fe89eef

Browse files
committed
feat: enable background bash execution on Windows
1 parent 0cc4332 commit fe89eef

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/node/services/tools/bash.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -239,16 +239,6 @@ export const createBashTool: ToolFactory = (config: ToolConfiguration) => {
239239

240240
// Handle background execution
241241
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-
252242
if (!config.workspaceId || !config.backgroundProcessManager || !config.runtime) {
253243
return {
254244
success: false,

0 commit comments

Comments
 (0)