We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acc8b27 commit f48240cCopy full SHA for f48240c
cibuildwheel/linux.py
@@ -217,7 +217,7 @@ def build(options: BuildOptions) -> None:
217
# clean up test environment
218
docker.call(['rm', '-rf', venv_dir])
219
220
- existing_output_files = docker.call(['ls'], cwd=container_output_dir).split('\n')
+ existing_output_files = docker.call(['ls'], capture_output=True, cwd=container_output_dir).split('\n')
221
for repaired_wheel in repaired_wheels:
222
if repaired_wheel.name in existing_output_files:
223
message = f'Created wheel ({repaired_wheel}) already exists in output directory.'
0 commit comments