Skip to content

Commit

Permalink
Log stdio for pull-turbo-cache script (#66759)
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Jul 9, 2024
1 parent 45656d3 commit 186ec6b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/pull-turbo-cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ const { spawn } = require('child_process')
}
)

child.stderr.on('data', (data) => {
process.stderr.write(data)
})

child.stdout.on('data', (data) => {
process.stdout.write(data)
turboResult += data.toString()
})

Expand Down

0 comments on commit 186ec6b

Please sign in to comment.