mirror of
https://github.com/rustmailer/bichon.git
synced 2026-08-03 07:48:34 +02:00
15 lines
413 B
Rust
15 lines
413 B
Rust
use std::{io::Result, process::Command};
|
|||
|
|
|
||
|
|
fn main() -> Result<()> {
|
||
|
|
let output = Command::new("git")
|
||
|
|
.args(&["rev-parse", "--short", "HEAD"])
|
||
|
|
.output()
|
||
|
|
.expect("Failed to get git commit hash");
|
||
|
|
let git_hash = String::from_utf8(output.stdout)
|
||
|
|
.expect("Invalid UTF-8")
|
||
|
|
.trim()
|
||
|
|
.to_string();
|
||
|
|
println!("cargo:rustc-env=GIT_HASH={}", git_hash);
|
||
|
|
Ok(())
|
||
|
|
}
|