zoxide/build.rs

17 lines
474 B
Rust
Raw Normal View History

2020-10-18 14:52:13 +05:30
use std::process::Command;
2020-03-31 14:54:45 -07:00
fn main() {
2020-10-18 14:52:13 +05:30
let git_describe = Command::new("git")
2020-03-31 14:54:45 -07:00
.args(&["describe", "--tags", "--broken"])
.output()
.ok()
.and_then(|proc| String::from_utf8(proc.stdout).ok());
let version_info = match git_describe {
Some(description) if !description.is_empty() => description,
2021-02-02 00:11:07 +05:30
_ => format!("v{}", env!("CARGO_PKG_VERSION")),
2020-03-31 14:54:45 -07:00
};
println!("cargo:rustc-env=ZOXIDE_VERSION={}", version_info);
}