diff options
author | Daniel GarcĂa <[email protected]> | 2019-01-19 17:35:47 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-01-19 17:35:47 +0100 |
commit | 86a254ad9ef27af3c35481d1e179a9f2affb8e7d (patch) | |
tree | 242f7497bb75b37e99227e413c94d827378fe22a /build.rs | |
parent | 64c38856cc4e8a3e3e2d77ec5d341462c8ac4635 (diff) | |
download | vaultwarden-86a254ad9ef27af3c35481d1e179a9f2affb8e7d.tar.gz vaultwarden-86a254ad9ef27af3c35481d1e179a9f2affb8e7d.zip |
Ignore build.rs git errors
Diffstat (limited to 'build.rs')
-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> { |