Tweak default mac repair cmd: delocate verbose

This commit is contained in:
Ankith
2022-10-21 14:14:13 +05:30
parent 6c361f0193
commit c09359e9af
4 changed files with 11 additions and 12 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ def get_default_repair_command(platform):
if platform == "linux":
return "auditwheel repair -w {dest_dir} {wheel}"
elif platform == "macos":
return "delocate-listdeps {wheel} && delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel}"
return "delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}"
elif platform == "windows":
return ""
else: