mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 05:17:37 +03:00
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:
parent
eb505d1f24
commit
53e5603ce2
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ fn do_cargo_expand() -> Result<i32> {
|
|||
let _ = write!(io::stdout(), "{}", content);
|
||||
}
|
||||
|
||||
Ok(0)
|
||||
Ok(code)
|
||||
}
|
||||
|
||||
fn which_rustfmt() -> Option<PathBuf> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue