diff options
-rw-r--r-- | build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ use std::process::Command; fn main() { - read_git_info().expect("Unable to read Git info"); + read_git_info().ok(); } fn run(args: &[&str]) -> Result<String, std::io::Error> { |