From afb5e9f40786e67d207d6ad2ad9ee09d7f76ee87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sat, 3 Apr 2021 13:02:22 +0200 Subject: cargo fmt --- mumctl/build.rs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'mumctl/build.rs') diff --git a/mumctl/build.rs b/mumctl/build.rs index 0a4f506..c11146a 100644 --- a/mumctl/build.rs +++ b/mumctl/build.rs @@ -11,9 +11,11 @@ fn main() { fn commit_hash() -> Option { let output = Command::new("git") - .arg("describe") - .arg("--tags") - .current_dir(env!("CARGO_MANIFEST_DIR")) - .output(); - output.ok().map(|o| String::from_utf8_lossy(&o.stdout).to_string()) + .arg("describe") + .arg("--tags") + .current_dir(env!("CARGO_MANIFEST_DIR")) + .output(); + output + .ok() + .map(|o| String::from_utf8_lossy(&o.stdout).to_string()) } -- cgit v1.2.1