From 86a254ad9ef27af3c35481d1e179a9f2affb8e7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Sat, 19 Jan 2019 17:35:47 +0100 Subject: [PATCH] Ignore build.rs git errors --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index f3e6ea33..1a77b27b 100644 --- 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 {