0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-18 11:58:24 +02:00

Remove the unnecessary check for sqlite

The binary we use is called `sqlite3` so no need to check for other
name variants as we won't use those anyways.
This commit is contained in:
Miro Prasil 2019-10-01 10:40:22 +01:00
parent acdd42935b
commit d6e9af909b

View file

@ -37,11 +37,7 @@ pub fn routes() -> Vec<Route> {
}
lazy_static! {
static ref CAN_BACKUP: bool = cfg!(feature = "sqlite") &&
(
Command::new("sqlite").arg("-version").status().is_ok() ||
Command::new("sqlite3").arg("-version").status().is_ok()
);
static ref CAN_BACKUP: bool = cfg!(feature = "sqlite") && Command::new("sqlite3").arg("-version").status().is_ok();
}
#[get("/")]