Skip to content

Commit 5217a15

Browse files
committed
Fix build/tree.py
1 parent 0bf1ea8 commit 5217a15

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def main():
99
commit_hash = get_commit_hash()
1010

1111
for tree_path in Path('tree').rglob('**/*.yaml'):
12-
output_path = Path('output') / tree_path
12+
output_path = (Path('output') / tree_path).with_suffix('.json')
1313

1414
# open and read tree
1515
tree_data = read_yaml_file(tree_path)

0 commit comments

Comments
 (0)