Use cargo exit code as top-level exit code

This will cause 'cargo expand' to exit with a non-zero exit code
when a compiler error occurs while expanding the file. This is useful
for crates like `macrotest`, which need to detect when expansion fails.
This commit is contained in:
Aaron Hill 2025-03-25 10:04:56 -04:00
parent eb505d1f24
commit 53e5603ce2

View file

@ -334,7 +334,7 @@ fn do_cargo_expand() -> Result<i32> {
let _ = write!(io::stdout(), "{}", content);
}
Ok(0)
Ok(code)
}
fn which_rustfmt() -> Option<PathBuf> {