aboutsummaryrefslogtreecommitdiff
path: root/helix-term/build.rs
blob: 61ffa6f4f30bbef60d16e6f9a8c0c3993d9a6f24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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);
}