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