Skip to content

Commit

Permalink
Writes jam outputs to stdout and stderr respectively
Browse files Browse the repository at this point in the history
Signed-off-by: Forest Eckhardt <[email protected]>
  • Loading branch information
Sophie Wigmore authored and ForestEckhardt committed Jan 5, 2021
1 parent a995f35 commit f8a1d85
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packing_tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,9 @@ func (p PackingTools) Execute(buildpackDir, output, version string, cached bool)
args = append(args, "--offline")
}

return p.jam.Execute(pexec.Execution{Args: args})
return p.jam.Execute(pexec.Execution{
Args: args,
Stdout: os.Stdout,
Stderr: os.Stderr,
})
}

0 comments on commit f8a1d85

Please sign in to comment.