Skip to content

Commit

Permalink
Bugfix: unable to remove temporary file path
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Lebedev committed Jun 10, 2024
1 parent cd71b8c commit 09b46c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vault/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl VaultTool for VaultToolImpl {
let file_path = Path::new(&file_path);

if file_path.exists() {
fs::remove_file(&file!())?;
fs::remove_file(&file_path)?;
}
}

Expand Down

0 comments on commit 09b46c4

Please sign in to comment.