0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-22 13:33:44 +02:00

Fix typo in cibuildwheel conf introduced in #14253

This commit is contained in:
David Robertson 2022-10-24 13:56:18 +01:00
parent 09b588854e
commit 1e73effebf
No known key found for this signature in database
GPG key ID: 903ECE108A39DEDD

View file

@ -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: