Use git-describe rather than rev-parse

This commit is contained in:
Matthias Beyer 2018-02-13 11:53:31 +01:00
parent 9469693763
commit c43abf09d1
1 changed files with 3 additions and 3 deletions

View File

@ -20,9 +20,9 @@
use std::process::Command;
fn main() {
let profile = String::from(std::env::var("PROFILE").unwrap());
let git_hash = if profile == "debug" {
let git_version = if profile == "debug" {
let output = Command::new("git")
.args(&["rev-parse", "--short=10", "HEAD"])
.args(&["describe", "HEAD"])
.output()
.unwrap();
String::from_utf8(output.stdout).unwrap()
@ -30,5 +30,5 @@ fn main() {
String::from("")
};
println!("cargo:rustc-env=CARGO_BUILD_GIT_HASH={}", git_hash);
println!("cargo:rustc-env=CARGO_BUILD_VERSION={}", git_version);
}