summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorDaniel GarcĂ­a <[email protected]>2019-01-19 17:35:47 +0100
committerGitHub <[email protected]>2019-01-19 17:35:47 +0100
commit86a254ad9ef27af3c35481d1e179a9f2affb8e7d (patch)
tree242f7497bb75b37e99227e413c94d827378fe22a /build.rs
parent64c38856cc4e8a3e3e2d77ec5d341462c8ac4635 (diff)
downloadvaultwarden-86a254ad9ef27af3c35481d1e179a9f2affb8e7d.tar.gz
vaultwarden-86a254ad9ef27af3c35481d1e179a9f2affb8e7d.zip
Ignore build.rs git errors
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs2
1 files changed, 1 insertions, 1 deletions
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<String, std::io::Error> {