mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Add NO_RUSTFMT flag to disable rustfmt
This commit is contained in:
parent
e0b01e944a
commit
ca50668ab1
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ fn main() {
|
|||
}
|
||||
|
||||
// Just print the expanded output if rustfmt is not available
|
||||
if !have_rustfmt() {
|
||||
if env::var("NO_RUSTFMT").is_ok() || !have_rustfmt() {
|
||||
io::stdout().write_all(&expanded.stdout).unwrap();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue