From 5ab798d53d650f0e1b7fb6b7768c0840d53ff393 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Mon, 12 Feb 2024 14:16:18 +1100 Subject: [PATCH] Move schema.md up one directory --- docs/docs/api/{schema => }/schema.md | 0 docs/exctract_schema.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename docs/docs/api/{schema => }/schema.md (100%) diff --git a/docs/docs/api/schema/schema.md b/docs/docs/api/schema.md similarity index 100% rename from docs/docs/api/schema/schema.md rename to docs/docs/api/schema.md diff --git a/docs/exctract_schema.py b/docs/exctract_schema.py index a5f683ae7c..1049d01707 100644 --- a/docs/exctract_schema.py +++ b/docs/exctract_schema.py @@ -82,7 +82,7 @@ def generate_index_file(version: str): output += '\n' - output_file = os.path.join(os.path.dirname(__file__), OUTPUT_DIR, 'schema.md') + output_file = os.path.join(os.path.dirname(__file__), OUTPUT_DIR, '..', 'schema.md') print('Writing index file to:', output_file)