diff --git a/build.rs b/build.rs index 11104b3..e9f6421 100644 --- a/build.rs +++ b/build.rs @@ -1,4 +1,5 @@ use std::process::Command; + fn main() { let output = Command::new("git").args(&["rev-parse", "HEAD"]).output().unwrap(); let git_hash = String::from_utf8(output.stdout).unwrap();