Files
MightyPork e52e692889 formatting, clap fixes, remove cs json trans
# Conflicts:
#	src/group_handler/mod.rs
#	src/store/mod.rs
2025-06-15 17:01:26 +02:00

11 lines
270 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);
}