Skip to content

Commit

Permalink
Update cibuildwheel/oci_container.py
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Aug 19, 2024
1 parent 2910b23 commit 98b24ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cibuildwheel/oci_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def copy_into(self, from_path: Path, to_path: PurePath) -> None:
if from_path.is_dir():
self.call(["mkdir", "-p", to_path])
subprocess.run(
f"tar -c --format bsdtar -f - . | {self.engine.name} exec -i {self.name} tar --format bsdtar --no-same-owner -xC {shell_quote(to_path)} -f -",
f"tar -c --format gnutar -f - . | {self.engine.name} exec -i {self.name} tar --format gnutar --no-same-owner -xC {shell_quote(to_path)} -f -",
shell=True,
check=True,
cwd=from_path,
Expand Down

0 comments on commit 98b24ce

Please sign in to comment.