commit 86a254ad9ef27af3c35481d1e179a9f2affb8e7d
parent 64c38856cc4e8a3e3e2d77ec5d341462c8ac4635
Author: Daniel GarcĂa <dani-garcia@users.noreply.github.com>
Date: Sat, 19 Jan 2019 17:35:47 +0100
Ignore build.rs git errors
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.rs b/build.rs
@@ -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> {