blob: 05f9772c0410221640961dedfdb45e3f56fd748a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! Just embed git-hash to `--version`
use std::process::Command;
fn main() {
let rev = rev().unwrap_or_else(|| "???????".to_string());
println!("cargo:rustc-env=REV={}", rev)
}
fn rev() -> Option<String> {
let output = Command::new("git").args(&["rev-parse", "HEAD"]).output().ok()?;
let stdout = String::from_utf8(output.stdout).ok()?;
let short_hash = stdout.get(0..7)?;
Some(short_hash.to_owned())
}
|