Skip to content

Commit

Permalink
Newline in schema version file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor-N-Suadicani committed Jun 12, 2024
1 parent 762af4c commit a85bc12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let spec = repo.revparse_single("HEAD")?.id();
std::fs::write(
"./src/v2/proto_schema_version.rs",
format!("pub const PROTO_SCHEMA_VERSION: &str = \"{}\";", spec),
format!("pub const PROTO_SCHEMA_VERSION: &str = \"{}\";\n", spec),
)?;
}
Ok(())
Expand Down

0 comments on commit a85bc12

Please sign in to comment.