Skip to content

Commit 89ac49d

Browse files
Merge #929
929: fix verbose r=Alexhuszagh a=Emilgardis Co-authored-by: Emil Gardström <emil.gardstrom@gmail.com>
2 parents 15a8ae2 + 80012be commit 89ac49d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1010
## Fixed
1111

1212
- #930 - fix any parsing of 1-character subcommands
13+
- #929 - Fixed issue where `--verbose` would not output data when it should
1314

1415
## [v0.2.3] - 2022-07-09
1516

src/extensions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ impl CommandExt for Command {
133133
silence_stdout: bool,
134134
) -> Result<ExitStatus> {
135135
self.debug(msg_info)?;
136-
if silence_stdout && msg_info.is_verbose() {
136+
if silence_stdout && !msg_info.is_verbose() {
137137
self.stdout(std::process::Stdio::null());
138138
}
139139
self.status()

0 commit comments

Comments
 (0)