mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
@ -89,7 +89,7 @@ def get_src_files(since: Optional[str]) -> List[str]:
|
|||||||
cmd = ["git", "diff", "--name-only", "--" ] + src_files
|
cmd = ["git", "diff", "--name-only", "--" ] + src_files
|
||||||
output = subprocess.check_output(cmd, universal_newlines=True)
|
output = subprocess.check_output(cmd, universal_newlines=True)
|
||||||
uncommitted_changed_files = output.split()
|
uncommitted_changed_files = output.split()
|
||||||
src_files = set(committed_changed_files + uncommitted_changed_files)
|
src_files = list(set(committed_changed_files + uncommitted_changed_files))
|
||||||
|
|
||||||
generated_files = list_generated_files()
|
generated_files = list_generated_files()
|
||||||
# Don't correct style for third-party files (and, for simplicity,
|
# Don't correct style for third-party files (and, for simplicity,
|
||||||
|
Reference in New Issue
Block a user