Unwrap or unknown the commit hash

This commit is contained in:
Kerollmops 2021-08-30 17:41:24 +02:00
parent 1782753387
commit a8c146fd13
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
3 changed files with 7 additions and 17 deletions

View file

@ -1,7 +1,9 @@
use vergen::{vergen, Config};
fn main() {
vergen(Config::default()).unwrap();
if let Err(e) = vergen(Config::default()) {
println!("cargo:warning=vergen: {}", e);
}
#[cfg(feature = "mini-dashboard")]
mini_dashboard::setup_mini_dashboard().expect("Could not load the mini-dashboard assets");