Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/mac/find_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def main():
best_sdk = None
sdk_output = None
for properties in list(sdk_json):
# Filter out macOS DriverKit, watchOS, and other SDKs.
if properties.get('productName') != 'macOS':
# Filter out macOS DriverKit, watchOS, AppleTV, and other SDKs.
if properties.get('platform') != 'macosx' or 'driver' in properties.get('canonicalName'):
continue
sdk_version = properties['sdkVersion']
parsed_version = parse_version(sdk_version)
Expand Down