2022-02-02 17:19:44 +01:00
|
|
|
use std::borrow::Cow;
|
2021-11-14 16:09:02 +01:00
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let git_hash = Command::new("git")
|
2022-02-02 17:19:44 +01:00
|
|
|
.args(&["rev-parse", "HEAD"])
|
2021-11-14 16:09:02 +01:00
|
|
|
.output()
|
|
|
|
.ok()
|
2022-02-18 05:05:12 +01:00
|
|
|
.filter(|output| output.status.success())
|
2022-02-02 17:19:44 +01:00
|
|
|
.and_then(|x| String::from_utf8(x.stdout).ok());
|
|
|
|
|
|
|
|
let version: Cow<_> = match git_hash {
|
|
|
|
Some(git_hash) => format!("{} ({})", env!("CARGO_PKG_VERSION"), &git_hash[..8]).into(),
|
|
|
|
None => env!("CARGO_PKG_VERSION").into(),
|
|
|
|
};
|
|
|
|
|
|
|
|
println!("cargo:rustc-env=VERSION_AND_GIT_HASH={}", version);
|
2021-11-14 16:09:02 +01:00
|
|
|
}
|