Skip to content

Commit

Permalink
detect changed modules
Browse files Browse the repository at this point in the history
  • Loading branch information
sunmou99 committed Aug 29, 2023
1 parent 1c41a9d commit 0218e19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/api_diff_report/api_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def get_api_files(file_list):
"""Filter out non api files."""
return [
f for f in file_list
if f.endwith('.podspec') or f.endswith('.swift') or (f.endswith('.h') and 'Public' in f)
if f.endswith('.podspec') or f.endswith('.swift') or (f.endswith('.h') and 'Public' in f)
]


Expand Down

0 comments on commit 0218e19

Please sign in to comment.