mirror of
https://git.ondrovo.com/MightyPork/group-actor.git
synced 2024-11-21 15:41:03 +00:00
10 lines
271 B
Rust
10 lines
271 B
Rust
use std::process::Command;
|
|
use std::str;
|
|
|
|
fn main() {
|
|
let desc_c = Command::new("git").args(&["describe", "--all", "--long"]).output().unwrap();
|
|
|
|
let desc = unsafe { str::from_utf8_unchecked(&desc_c.stdout) };
|
|
|
|
println!("cargo:rustc-env=GIT_REV={}", desc);
|
|
}
|