Add NO_RUSTFMT flag to disable rustfmt

This commit is contained in:
David Tolnay 2016-08-03 21:01:59 -07:00
parent e0b01e944a
commit ca50668ab1
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -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;
}