Handle cross filesystem untarring in bootstrap.py

This commit is contained in:
Kovid Goyal 2022-03-10 22:43:54 +05:30
parent 3df0194f6e
commit 92abaad22c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -103,7 +103,7 @@ def move(src, base_dest):
os.makedirs(dest, exist_ok=True)
move(x.path, dest)
else:
os.rename(x.path, dest)
shutil.move(x.path, dest)
def compile_terminfo(base):