rustfmt
This commit is contained in:
19
build.rs
19
build.rs
@ -1,7 +1,12 @@
|
||||
fn main() {
|
||||
let git_output = std::process::Command::new("git").args(["rev-parse", "--git-dir"]).output().ok();
|
||||
let git_output = std::process::Command::new("git")
|
||||
.args(["rev-parse", "--git-dir"])
|
||||
.output()
|
||||
.ok();
|
||||
let git_dir = git_output.as_ref().and_then(|output| {
|
||||
std::str::from_utf8(&output.stdout).ok().and_then(|s| s.strip_suffix('\n').or_else(|| s.strip_suffix("\r\n")))
|
||||
std::str::from_utf8(&output.stdout)
|
||||
.ok()
|
||||
.and_then(|s| s.strip_suffix('\n').or_else(|| s.strip_suffix("\r\n")))
|
||||
});
|
||||
|
||||
// Tell cargo to rebuild if the head or any relevant refs change.
|
||||
@ -22,9 +27,13 @@ fn main() {
|
||||
}
|
||||
}
|
||||
|
||||
let git_output =
|
||||
std::process::Command::new("git").args(["describe", "--always", "--tags", "--long", "--dirty"]).output().ok();
|
||||
let git_info = git_output.as_ref().and_then(|output| std::str::from_utf8(&output.stdout).ok().map(str::trim));
|
||||
let git_output = std::process::Command::new("git")
|
||||
.args(["describe", "--always", "--tags", "--long", "--dirty"])
|
||||
.output()
|
||||
.ok();
|
||||
let git_info = git_output
|
||||
.as_ref()
|
||||
.and_then(|output| std::str::from_utf8(&output.stdout).ok().map(str::trim));
|
||||
let cargo_pkg_version = env!("CARGO_PKG_VERSION");
|
||||
|
||||
// Default git_describe to cargo_pkg_version
|
||||
|
Reference in New Issue
Block a user