diff --git a/build.rs b/build.rs index 6901fa4b2e..67a95495ab 100644 --- a/build.rs +++ b/build.rs @@ -57,7 +57,12 @@ fn check_file_licenses>(path: P) { .read_to_end(&mut contents) .unwrap(); - assert_eq!(contents, EXPECTED_LICENSE_TEXT, "The license in \"{}\" is either missing or it doesn't match the expected string!", entry.path().display()); + assert_eq!( + contents, + EXPECTED_LICENSE_TEXT, + "The license in \"{}\" is either missing or it doesn't match the expected string!", + entry.path().display() + ); } }