Skip to content

Commit 4beae68

Browse files
committed
Keep output from getting hidden
1 parent a65e336 commit 4beae68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dylint/src/package_options/auto_correct/highlight.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ impl Highlight {
113113
pub fn collect_highlights(opts: &opts::Dylint, path: &Path) -> Result<Vec<Highlight>> {
114114
let start = Instant::now();
115115

116-
let _: Result<_> = cargo::check("upgraded library package")
117-
.quiet(opts.quiet)
116+
let _ = cargo::check("upgraded library package")
117+
.quiet(false)
118118
.build()
119119
.sanitize_environment()
120120
.current_dir(path)
121-
.logged_output(false);
121+
.status();
122122

123123
let output = cargo::check("upgraded library package")
124124
.quiet(opts.quiet)

0 commit comments

Comments
 (0)