mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 10:57:48 +03:00
fix: delete backup after successfully restoring backup in copy strategy
This commit is contained in:
parent
6b3a36e96e
commit
f40a200f99
1 changed files with 7 additions and 0 deletions
|
@ -1092,6 +1092,13 @@ impl Document {
|
|||
log::error!(
|
||||
"Failed to restore backup on write failure: {restore_err}"
|
||||
)
|
||||
} else {
|
||||
// successfully restored. delete backup
|
||||
if let Err(delete_err) = tokio::fs::remove_file(backup).await {
|
||||
log::error!(
|
||||
"Failed to remove backup file on write: {delete_err}"
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
BackupKind::Move => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue