We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 106d16b commit 9e2d59cCopy full SHA for 9e2d59c
src/build/mac/find_sdk.py
@@ -77,6 +77,7 @@ def main():
77
'agreement, and run `sudo xcode-select -s /path/to/Xcode.app` ' +
78
'to continue.')
79
sdks = [re.findall('^MacOSX(\d+\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
80
+ print(sdks)
81
sdks = [s[0] for s in sdks if s] # [['10.5'], ['10.6']] => ['10.5', '10.6']
82
sdks = [s for s in sdks # ['10.5', '10.6'] => ['10.6']
83
if parse_version(s) >= parse_version(min_sdk_version)]
0 commit comments