Skip to content

Commit

Permalink
Update language script for core languages move
Browse files Browse the repository at this point in the history
  • Loading branch information
Derkades committed Jun 20, 2024
1 parent 4d3f70d commit 2f7fdc6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dev/scripts/create_lang.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@

name = sys.argv[1]

modules = [e.name for e in Path('modules').iterdir() if e.name != 'Core']
modules = [e.name for e in Path('modules').iterdir()]
paths = [Path('modules', module, 'language', name + '.json') for module in modules]
paths.append(Path('custom', 'languages', name + '.json'))

for path in paths:
with path.open('bw+') as f:
Expand Down

0 comments on commit 2f7fdc6

Please sign in to comment.