formatting & lints, one fix for member-only groups
This commit is contained in:
@@ -2,11 +2,12 @@ use std::process::Command;
|
||||
use std::str;
|
||||
|
||||
fn main() {
|
||||
let desc_c = Command::new("git").args(&["describe", "--all", "--long"]).output().unwrap();
|
||||
let desc_c = Command::new("git")
|
||||
.args(&["describe", "--all", "--long"])
|
||||
.output()
|
||||
.unwrap();
|
||||
|
||||
let desc = unsafe {
|
||||
str::from_utf8_unchecked( &desc_c.stdout )
|
||||
};
|
||||
let desc = unsafe { str::from_utf8_unchecked(&desc_c.stdout) };
|
||||
|
||||
println!("cargo:rustc-env=GIT_REV={}", desc);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user