2023-12-31 17:41:59 +01:00
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
fn main() {
|
2024-10-20 14:59:20 +02:00
|
|
|
let output = Command::new("git")
|
|
|
|
.args(["rev-parse", "--short", "HEAD"])
|
|
|
|
.output()
|
|
|
|
.unwrap();
|
2023-12-31 17:41:59 +01:00
|
|
|
let git_hash = String::from_utf8(output.stdout).unwrap();
|
|
|
|
println!("cargo:rustc-env=GIT_HASH={}", git_hash);
|
|
|
|
}
|