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 31f3cd8 commit f2c266dCopy full SHA for f2c266d
collector/src/main.rs
@@ -1084,7 +1084,10 @@ fn main_result() -> anyhow::Result<i32> {
1084
eprintln!("{}", diff.to_string_lossy());
1085
}
1086
} else if diffs.len() == 1 {
1087
- eprintln!("Diff: {}", diffs[0].to_string_lossy());
+ let short = out_dir.join("cgdiffann-latest");
1088
+ std::fs::copy(&diffs[0], &short).expect("copy to short path");
1089
+ eprintln!("Original diff at: {}", diffs[0].to_string_lossy());
1090
+ eprintln!("Short path: {}", short.to_string_lossy());
1091
1092
1093
0 commit comments