mirror of
https://github.com/86Box/bios-tools.git
synced 2026-02-22 01:25:34 -07:00
Get rid of symlink removal guard, it turns out mergerfs is the culprit
This commit is contained in:
@@ -179,11 +179,10 @@ class ArchiveExtractor(Extractor):
|
||||
pass
|
||||
|
||||
# Remove any created symlink.
|
||||
while os.path.islink(link_path):
|
||||
try:
|
||||
os.remove(link_path)
|
||||
except:
|
||||
break
|
||||
try:
|
||||
os.remove(link_path)
|
||||
except:
|
||||
pass
|
||||
|
||||
def extract(self, file_path, file_header, dest_dir, dest_dir_0):
|
||||
"""Extract an archive."""
|
||||
|
||||
Reference in New Issue
Block a user