diff options
author | David Robertson <davidr@element.io> | 2022-10-24 13:56:18 +0100 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-10-24 13:56:18 +0100 |
commit | 1e73effebf4f307f499c8cd4be58f805959beb38 (patch) | |
tree | 524d1d96f7aa33f49a089dd604d74906b5dee880 /.ci | |
parent | Fix `TypeError: 'dict_keys' object is not reversible` (#14280) (diff) | |
download | synapse-1e73effebf4f307f499c8cd4be58f805959beb38.tar.xz |
Fix typo in cibuildwheel conf introduced in #14253
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/scripts/auditwheel_wrapper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/auditwheel_wrapper.py b/.ci/scripts/auditwheel_wrapper.py index c744644c25..a33b39314f 100755 --- a/.ci/scripts/auditwheel_wrapper.py +++ b/.ci/scripts/auditwheel_wrapper.py @@ -94,7 +94,7 @@ def main(wheel_file: str, dest_dir: str, archs: Optional[str]) -> None: # `delocate-listdeps`. subprocess.run(["delocate-listdeps", wheel_file], check=True) subprocess.run( - ["delocate-wheel" "--require-archs", archs, "-w", dest_dir, wheel_file], + ["delocate-wheel", "--require-archs", archs, "-w", dest_dir, wheel_file], check=True, ) else: |