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.
2 parents 15a8ae2 + 80012be commit 89ac49dCopy full SHA for 89ac49d
CHANGELOG.md
@@ -10,6 +10,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
10
## Fixed
11
12
- #930 - fix any parsing of 1-character subcommands
13
+- #929 - Fixed issue where `--verbose` would not output data when it should
14
15
## [v0.2.3] - 2022-07-09
16
src/extensions.rs
@@ -133,7 +133,7 @@ impl CommandExt for Command {
133
silence_stdout: bool,
134
) -> Result<ExitStatus> {
135
self.debug(msg_info)?;
136
- if silence_stdout && msg_info.is_verbose() {
+ if silence_stdout && !msg_info.is_verbose() {
137
self.stdout(std::process::Stdio::null());
138
}
139
self.status()
0 commit comments