We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ed42ed commit 795c4afCopy full SHA for 795c4af
1 file changed
pylib/gyp/xcode_emulation.py
@@ -1508,7 +1508,8 @@ def XcodeVersion():
1508
raise GypError("xcodebuild returned unexpected results")
1509
version = version_list[0].split()[-1] # Last word on first line
1510
build = version_list[-1].split()[-1] # Last word on last line
1511
- except (GypError, FileNotFoundError): # Xcode not installed so look for XCode Command Line Tools
+ except (GypError, FileNotFoundError):
1512
+ # Xcode not installed so look for XCode Command Line Tools
1513
version = CLTVersion() # macOS Catalina returns 11.0.0.0.1.1567737322
1514
if not version:
1515
raise GypError("No Xcode or CLT version detected!")
0 commit comments