mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-02-25 17:57:35 +03:00
18 lines
462 B
Rust
18 lines
462 B
Rust
// build.rs
|
|
use std::env;
|
|
use std::process::Command;
|
|
|
|
fn main() {
|
|
let repoid = match env::var("REPOID") {
|
|
Ok(repoid) => repoid,
|
|
Err(_) => match Command::new("git").args(&["rev-parse", "HEAD"]).output() {
|
|
Ok(output) => String::from_utf8(output.stdout).unwrap(),
|
|
Err(err) => {
|
|
panic!("git rev-parse failed: {}", err);
|
|
}
|
|
},
|
|
};
|
|
|
|
println!("cargo:rustc-env=REPOID={}", repoid);
|
|
}
|