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 036159c commit 735240cCopy full SHA for 735240c
clang_tools/wheel.py
@@ -27,7 +27,8 @@ def main() -> int:
27
print(f"{args.tool} installed at: {path}")
28
return 0
29
else:
30
- print(f"Failed to install {args.tool} version {args.version}")
+ version_str = f" version {args.version}" if args.version else ""
31
+ print(f"Failed to install {args.tool}{version_str}")
32
return 1
33
34
0 commit comments