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 a65e336 commit 4beae68Copy full SHA for 4beae68
dylint/src/package_options/auto_correct/highlight.rs
@@ -113,12 +113,12 @@ impl Highlight {
113
pub fn collect_highlights(opts: &opts::Dylint, path: &Path) -> Result<Vec<Highlight>> {
114
let start = Instant::now();
115
116
- let _: Result<_> = cargo::check("upgraded library package")
117
- .quiet(opts.quiet)
+ let _ = cargo::check("upgraded library package")
+ .quiet(false)
118
.build()
119
.sanitize_environment()
120
.current_dir(path)
121
- .logged_output(false);
+ .status();
122
123
let output = cargo::check("upgraded library package")
124
.quiet(opts.quiet)
0 commit comments