diff options
| author | Valentin Popov <valentin@popov.link> | 2026-06-22 15:49:32 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-06-22 15:49:32 +0300 |
| commit | 91c7a8a14ed6f482db873acf828bf673a58e883b (patch) | |
| tree | e59b2a95ff7fb9006a6873d9a8a502bc30a41934 /xtask/src | |
| parent | 8b91a0bfbf0097d145359c8508a61696ade812d1 (diff) | |
| download | fparkan-91c7a8a14ed6f482db873acf828bf673a58e883b.tar.xz fparkan-91c7a8a14ed6f482db873acf828bf673a58e883b.zip | |
fix: make corpus reports explicit and fallible
Diffstat (limited to 'xtask/src')
| -rw-r--r-- | xtask/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 722053a..fd33aa6 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -57,7 +57,7 @@ fn run(args: &[String]) -> Result<(), String> { let root = parse_root(rest)?; let manifest = discover(&root, DiscoverOptions::default()).map_err(|e| e.to_string())?; - let report = report(&root, &manifest); + let report = report(&root, &manifest).map_err(|e| e.to_string())?; println!("{}", render_report_json(&report)); Ok(()) } |
