0949a0de7f
* Add commit hash to version info, if present * Rename GIT_HASH to indicate that it includes version, fix linter error * Add whitespace after use statement Co-authored-by: Ivan Tham <pickfire@riseup.net> Co-authored-by: Ivan Tham <pickfire@riseup.net>
12 lines
359 B
Rust
12 lines
359 B
Rust
use std::process::Command;
|
|
|
|
fn main() {
|
|
let git_hash = Command::new("git")
|
|
.args(&["describe", "--dirty"])
|
|
.output()
|
|
.map(|x| String::from_utf8(x.stdout).ok())
|
|
.ok()
|
|
.flatten()
|
|
.unwrap_or_else(|| String::from(env!("CARGO_PKG_VERSION")));
|
|
println!("cargo:rustc-env=VERSION_AND_GIT_HASH={}", git_hash);
|
|
}
|