Also parse .proto files in plugin subdirectories

Followup fix for #3184
develop
lethosor 2023-08-04 01:18:21 -04:00
parent 8511775dbb
commit b17ca80d27
No known key found for this signature in database
GPG Key ID: 76A269552F4F58C1
1 changed files with 2 additions and 1 deletions

@ -1,5 +1,6 @@
#!/usr/bin/env python3
import glob
import itertools
import sys
actual = {'': {}}
@ -27,7 +28,7 @@ for p in glob.iglob('library/proto/*.proto'):
parts = line.split(' ')
expected[''][parts[2]] = (parts[4], parts[6])
for p in glob.iglob('plugins/proto/*.proto'):
for p in itertools.chain(glob.iglob('plugins/proto/*.proto'), glob.iglob('plugins/*/proto/*.proto')):
plugin_name = ''
with open(p) as f:
for line in f: