forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
359 B
Rust
13 lines
359 B
Rust
3 years ago
|
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);
|
||
|
}
|