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 6ee1469 commit 225f7e0Copy full SHA for 225f7e0
lintcheck/src/main.rs
@@ -294,6 +294,14 @@ impl Crate {
294
});
295
let stdout = String::from_utf8_lossy(&all_output.stdout);
296
let stderr = String::from_utf8_lossy(&all_output.stderr);
297
+ let status = &all_output.status;
298
+
299
+ if !status.success() {
300
+ eprintln!(
301
+ "\nWARNING: bad exit status after checking {} {} \n",
302
+ self.name, self.version
303
+ );
304
+ }
305
306
if fix {
307
if let Some(stderr) = stderr
0 commit comments