Compare commits

..

2 commits

Author SHA1 Message Date
92ac0d0384 Fix mariadb dump logic on unchanged database 2021-12-17 23:11:04 +01:00
5f88c0f5ed Clippy 2021-12-17 23:11:04 +01:00

View file

@ -44,9 +44,8 @@ pub fn create_static_output_files(source_dir: &str) {
}
}
Err(err) => {
if err.kind() == NotFound {
} else {
Err(err).unwrap();
if err.kind() != NotFound {
panic!("Unexpected error: {}", err)
}
}
}