Don't ask for master password in clean command
This commit is contained in:
parent
bdfb17d888
commit
4b15b9403a
1 changed files with 25 additions and 18 deletions
|
@ -63,6 +63,12 @@ impl Cli {
|
|||
"Getting password file: {}",
|
||||
passwords_file.to_string_lossy()
|
||||
);
|
||||
let password_manager = if matches!(self.command, Commands::Clean(..)) {
|
||||
Passwords {
|
||||
passwords_file,
|
||||
..Default::default()
|
||||
}
|
||||
} else {
|
||||
let password = scanpw::scanpw!("Master Password: ");
|
||||
|
||||
if password::is_new_password_file(&passwords_file)? {
|
||||
|
@ -79,10 +85,11 @@ impl Cli {
|
|||
}
|
||||
|
||||
let master_password = sha256::digest(password);
|
||||
let password_manager = Passwords::try_reload(
|
||||
Passwords::try_reload(
|
||||
passwords_file,
|
||||
master_password.into_bytes().into_iter().take(32).collect(),
|
||||
)?;
|
||||
)?
|
||||
};
|
||||
self.command.run(password_manager)?;
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in a new issue