Skip to content

Commit

Permalink
update dist folder
Browse files Browse the repository at this point in the history
  • Loading branch information
bitmaskit committed Jan 31, 2025
1 parent 517c7ef commit b3ec02f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/execute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export async function executePiper (
stepName: string, flags?: string[], ignoreDefaults?: boolean, execOptions?: ExecOptions
): Promise<piperExecResult> {
let piperOutput = ''
let piperError = ''
const piperError = ''
let options = {
listeners: {
stdout: (data: Buffer) => {
Expand All @@ -31,9 +31,9 @@ export async function executePiper (
debug('about to print some data from options.listeners.stderr')
const outString = data.toString()
outString.split('\n').forEach(line => {
// error(`${line}`) // Treat stderr as errors
error(`${line}`) // Treat stderr as errors
// TODO: what to do with piperError ?
piperError += `${line}\n`
// piperError += `${line}\n`
})
}
}
Expand Down

0 comments on commit b3ec02f

Please sign in to comment.