mirror of
https://github.com/alterware/alterware-launcher.git
synced 2025-12-04 07:17:50 +00:00
don't panic if cleaning up left over files fails
This commit is contained in:
@@ -43,7 +43,9 @@ pub fn run(update_only: bool) {
|
|||||||
&& (file_name.contains(".__relocated__.exe")
|
&& (file_name.contains(".__relocated__.exe")
|
||||||
|| file_name.contains(".__selfdelete__.exe"))
|
|| file_name.contains(".__selfdelete__.exe"))
|
||||||
{
|
{
|
||||||
fs::remove_file(file.path()).unwrap();
|
fs::remove_file(file.path()).unwrap_or_else(|_| {
|
||||||
|
println!("Failed to remove old launcher file.");
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user