cosmic-edit/build.rs

12 lines
277 B
Rust
Raw Normal View History

2024-02-28 08:57:24 -07:00
fn main() -> Result<(), Box<dyn std::error::Error>> {
2023-11-04 12:51:34 -06:00
// Rebuild if i18n files change
2024-02-28 08:57:24 -07:00
println!("cargo:rerun-if-changed=i18n");
vergen::EmitBuilder::builder()
.fail_on_error()
.git_commit_date()
.git_sha(true)
.emit()?;
Ok(())
2023-11-04 12:51:34 -06:00
}