Skip to content

Commit

Permalink
fix: pipe log output in server (#568)
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoboucas committed Jan 22, 2024
1 parent 31ad5cd commit de9bff0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,12 +253,12 @@ class DenoBridge {
async runInBackground(
args: string[],
ref?: ProcessRef,
{ env: inputEnv, extendEnv = true, stderr, stdout }: RunOptions = {},
{ env: inputEnv, extendEnv = true, pipeOutput, stderr, stdout }: RunOptions = {},
) {
const { path: binaryPath } = await this.getBinaryPath()
const env = this.getEnvironmentVariables(inputEnv)
const options: Options = { env, extendEnv }
const ps = DenoBridge.runWithBinary(binaryPath, args, { options, stderr, stdout })
const ps = DenoBridge.runWithBinary(binaryPath, args, { options, pipeOutput, stderr, stdout })

if (ref !== undefined) {
// eslint-disable-next-line no-param-reassign
Expand Down

0 comments on commit de9bff0

Please sign in to comment.