fix: Create the vaults file if it's not exist
Some checks failed
Rust CI / Rust CI (pull_request) Has been cancelled

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb 2024-06-28 19:12:47 +03:00
parent 9a417e7d0b
commit 9578ec4e5f
Signed by: awiteb
GPG key ID: 3F6B55640AA6682F

View file

@ -122,11 +122,16 @@ impl Cli {
log::info!("Using the given vaults file"); log::info!("Using the given vaults file");
if let Some(parent) = path.parent() { if let Some(parent) = path.parent() {
if parent.to_str() != Some("") && !parent.exists() { if parent.to_str() != Some("") && !parent.exists() {
log::info!("Creating the parent vaults file directory"); log::info!(
"Creating the parent vaults file directory: {}",
parent.display()
);
fs::create_dir_all(parent)?; fs::create_dir_all(parent)?;
} }
} }
if !path.exists() {
fs::File::create(&path)?; fs::File::create(&path)?;
}
path path
} else { } else {
log::info!("Using the default vaults file"); log::info!("Using the default vaults file");