Skip to content

Commit 0fac493

Browse files
Fix filter
1 parent 345b71f commit 0fac493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PCbuild/get_external.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def fetch_release(tag, tarball_dir, *, org='python', verbose=False):
7474
def extract_tarball(externals_dir, tarball_path, tag):
7575
output_path = externals_dir / tag
7676
with tarfile.open(tarball_path) as tf:
77-
tf.extractall(os.fspath(externals_dir))
77+
tf.extractall(os.fspath(externals_dir), filter='data')
7878
return output_path
7979

8080

0 commit comments

Comments
 (0)