mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 00:48:22 -04:00
Merge pull request #883 from agaida/hack-unpackfs
[unpackfs] skip error check when rm of tmp folder fails
This commit is contained in:
commit
a35a7b108f
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class UnpackOperation:
|
|||
|
||||
return None
|
||||
finally:
|
||||
shutil.rmtree(source_mount_path)
|
||||
shutil.rmtree(source_mount_path, ignore_errors=True, onerror=None)
|
||||
|
||||
def mount_image(self, entry, imgmountdir):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue