Skip to content

Commit

Permalink
w
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Nov 18, 2024
1 parent 1b0ab26 commit 0556c0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/lib.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseArgs } from 'node:util'
import * as process from 'node:process'
import process from 'node:process'

import { type IBuildAgent } from '@agents/common'
import { type IRunner } from '@tools/common'
Expand Down Expand Up @@ -37,7 +37,7 @@ export async function run(agent: string, tool: string, command: string): Promise
const runner = await getToolRunner(agent, tool)
const { code, stdout, stderr } = await runner.run(command)
if (stdout) {
process.stdout.write(stdout)
// process.stdout.write(stdout)
}
if (stderr) {
process.stderr.write(stderr)
Expand Down

0 comments on commit 0556c0b

Please sign in to comment.