Skip to content

Commit d8b1297

Browse files
committed
Fix path in snippets script
1 parent 39fdb7e commit d8b1297

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/src/snippets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def format_int_list(values: List[str]):
9797

9898

9999
def generate_snippets(version: str, output_path: Path):
100-
version_path = Path("./public") / version
100+
version_path = output_path / version
101101
with open(version_path / "objectsDoc.yaml") as file:
102102
objects = yaml.load(file, Loader=yaml.BaseLoader)
103103
snippets = []

0 commit comments

Comments
 (0)