Skip to content

Commit

Permalink
Update compression.py
Browse files Browse the repository at this point in the history
  • Loading branch information
吴坎 authored Mar 25, 2024
1 parent 032c77c commit a8d7cd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/spack/spack/util/compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def _py_untar(archive_file: str, remove_archive_file: bool = False) -> str:
shutil.move(archive_file_no_ext, archive_file)
f_tar = tarfile.open(archive_file)
f_members = [_data_filter(member=m, dest_path=outfile) for m in f_tar.getmembers()]
f_tar.extractall(members=f_members)
f_tar.extractall(path=outfile, members=f_members)
f_tar.close()
if remove_archive_file:
# remove input file to prevent two stage
Expand Down Expand Up @@ -398,7 +398,7 @@ def _py_unzip(archive_file: str) -> str:
archive_file = archive_file_no_ext + "-input"
shutil.move(archive_file_no_ext, archive_file)
f_zip = zipfile.ZipFile(archive_file)
f_zip.extractall()
f_zip.extractall(path=outfile)
return outfile


Expand Down

0 comments on commit a8d7cd4

Please sign in to comment.