We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cea6740 commit 0f75ca1Copy full SHA for 0f75ca1
1 file changed
src/utils/progress.rs
@@ -15,7 +15,7 @@ pub fn use_progress_bar() -> bool {
15
if env::var("SENTRY_NO_PROGRESS_BAR") == Ok("1".into()) {
16
return false;
17
}
18
- std::io::stdout().is_terminal()
+ std::io::stdout().is_terminal() && std::io::stderr().is_terminal()
19
20
21
/// Wrapper that optionally holds a progress bar.
0 commit comments