mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 13:27:37 +03:00
Replace NO_RUSTFMT with RUSTFMT=""
This commit is contained in:
parent
7a0b0cac8c
commit
3094dffcb0
1 changed files with 4 additions and 2 deletions
|
@ -19,14 +19,16 @@ fn main() {
|
||||||
process::exit(expanded.status.code().unwrap_or(1));
|
process::exit(expanded.status.code().unwrap_or(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let rustfmt = env::var("RUSTFMT").unwrap_or("rustfmt".to_string());
|
||||||
|
|
||||||
// Just print the expanded output if rustfmt is not available
|
// Just print the expanded output if rustfmt is not available
|
||||||
if env::var("NO_RUSTFMT").is_ok() || !have_rustfmt() {
|
if rustfmt == "" || !have_rustfmt() {
|
||||||
io::stdout().write_all(&expanded.stdout).unwrap();
|
io::stdout().write_all(&expanded.stdout).unwrap();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build rustfmt command and give it the expanded code
|
// Build rustfmt command and give it the expanded code
|
||||||
let mut rustfmt = Command::new("rustfmt")
|
let mut rustfmt = Command::new(rustfmt)
|
||||||
.stdin(Stdio::piped())
|
.stdin(Stdio::piped())
|
||||||
.stdout(Stdio::piped())
|
.stdout(Stdio::piped())
|
||||||
.stderr(Stdio::piped())
|
.stderr(Stdio::piped())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue