mirror of
https://git.ondrovo.com/MightyPork/group-actor.git
synced 2024-11-21 23:51:01 +00:00
12 lines
285 B
Rust
12 lines
285 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);
|
|
}
|