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 b9ceaa3 commit b10fa25Copy full SHA for b10fa25
crates/symbol-check/src/main.rs
@@ -60,11 +60,10 @@ fn exec_cargo_with_args(args: &[&str]) -> Vec<PathBuf> {
60
61
for line in reader.lines() {
62
let line = line.expect("failed to read line");
63
+ println!("{line}"); // tee to stdout
64
65
// Select only steps that create files
66
let j: Value = serde_json::from_str(&line).expect("failed to deserialize");
- println!("{j:#?}"); // tee to stdout
67
-
68
if j["reason"] != "compiler-artifact" {
69
continue;
70
}
0 commit comments