lint: Skip libmultiprocess subtree in lint-shell-locale.py

This commit is contained in:
Hennadii Stepanov
2026-07-26 16:43:31 +01:00
parent 1194918a5d
commit 982ee64938

View File

@@ -38,7 +38,7 @@ def main():
exit_code = 0
shell_files = get_shell_files_list()
for file_path in shell_files:
if re.search('src/(secp256k1|minisketch)/', file_path):
if re.search('src/(ipc/libmultiprocess|secp256k1|minisketch)/', file_path):
continue
with open(file_path, 'r') as file_obj: