Run cargo fmt

This commit is contained in:
Aaron Loucks 2020-06-27 13:09:53 -04:00
parent 06033f7f63
commit c0ba921a0d

View File

@ -34,7 +34,10 @@ fn assert_file_exists(path: &str) -> io::Result<()> {
fn main() -> io::Result<()> {
let manifest_dir = Path::new(env!("CARGO_MANIFEST_DIR"));
println!("cargo:THIRD_PARTY={}", manifest_dir.join("third-party").display());
println!(
"cargo:THIRD_PARTY={}",
manifest_dir.join("third-party").display()
);
for (key, value) in DEFINES.iter() {
println!("cargo:DEFINE_{}={}", key, value.unwrap_or(""));
}