Skip to content

Commit 9e2d59c

Browse files
committed
sdk
1 parent 106d16b commit 9e2d59c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/build/mac/find_sdk.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ def main():
7777
'agreement, and run `sudo xcode-select -s /path/to/Xcode.app` ' +
7878
'to continue.')
7979
sdks = [re.findall('^MacOSX(\d+\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
80+
print(sdks)
8081
sdks = [s[0] for s in sdks if s] # [['10.5'], ['10.6']] => ['10.5', '10.6']
8182
sdks = [s for s in sdks # ['10.5', '10.6'] => ['10.6']
8283
if parse_version(s) >= parse_version(min_sdk_version)]

0 commit comments

Comments
 (0)