Fix bug when 'info.json' lookup escapes keyboard dir (#16734)
This commit is contained in:
parent
084df6a288
commit
55e5daa868
1 changed files with 2 additions and 2 deletions
|
@ -753,9 +753,9 @@ def find_info_json(keyboard):
|
||||||
|
|
||||||
# Add in parent folders for least specific
|
# Add in parent folders for least specific
|
||||||
for _ in range(5):
|
for _ in range(5):
|
||||||
info_jsons.append(keyboard_parent / 'info.json')
|
if keyboard_parent == base_path:
|
||||||
if keyboard_parent.parent == base_path:
|
|
||||||
break
|
break
|
||||||
|
info_jsons.append(keyboard_parent / 'info.json')
|
||||||
keyboard_parent = keyboard_parent.parent
|
keyboard_parent = keyboard_parent.parent
|
||||||
|
|
||||||
# Return a list of the info.json files that actually exist
|
# Return a list of the info.json files that actually exist
|
||||||
|
|
Loading…
Reference in a new issue