Skip to content

Commit

Permalink
normalize line endings, thanks windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilgardis committed Jun 25, 2022
1 parent 1efbfba commit 179149f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@ pub static PROVIDED_IMAGES: &[ProvidedImage] = &["##,
pub fn ensure_correct_codegen() -> cross::Result<()> {
let provided_images = crate::util::get_cargo_workspace().join("src/docker/provided_images.rs");
let content = cross::file::read(provided_images)?;
assert_eq!(content, docker_images());
assert_eq!(content.replace("\r\n", "\n"), docker_images());
Ok(())
}

0 comments on commit 179149f

Please sign in to comment.