sentry-cli icon indicating copy to clipboard operation
sentry-cli copied to clipboard

JS layer for sentry CLI mutes stdout from command execution

Open CharlesB2 opened this issue 3 years ago • 0 comments

Environment

Node 16.17

Steps to Reproduce

Given the following code

const SentryCli = require('@sentry/cli')
const cli = new SentryCli()
await cli.releases.new("1.0")
await cli.releases.setCommits(release, { repo: "myrepo", commit:"000000000000", previousCommit: "0000000000000",})
await cli.releases.finalize(release)

Expected Result

There should be a display of the underlying sentry cli output, or an option to activate this

Actual Result

No output, in case something goes wrong we don't get any detail.

CharlesB2 avatar Oct 07 '22 11:10 CharlesB2