Ignore build.rs git errors

This commit is contained in:
Daniel García 2019-01-19 17:35:47 +01:00 committed by GitHub
parent 64c38856cc
commit 86a254ad9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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> {