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
@ -218,7 +218,7 @@ class UnpackOperation:
|
|||||||
|
|
||||||
return None
|
return None
|
||||||
finally:
|
finally:
|
||||||
shutil.rmtree(source_mount_path)
|
shutil.rmtree(source_mount_path, ignore_errors=True, onerror=None)
|
||||||
|
|
||||||
def mount_image(self, entry, imgmountdir):
|
def mount_image(self, entry, imgmountdir):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user