Merge pull request #883 from agaida/hack-unpackfs

[unpackfs] skip error check when rm of tmp folder fails
main
Adriaan de Groot 7 years ago committed by GitHub
commit a35a7b108f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save