[PATCH 2/3] tools/check-glossaries: fix default doc path

Antonin Godard <[email protected]> Thu, 02 Jul 2026 15:59:11 +0200
Newsgroups org.yoctoproject.lists.docs
Message-ID <[email protected]>
This default path pointing to the documentation was wrong, fix it.

Signed-off-by: Antonin Godard <[email protected]>
---
 documentation/tools/check-glossaries | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/tools/check-glossaries b/documentation/tools/check-glossaries
index 9f1a47126..6bfddcfda 100755
--- a/documentation/tools/check-glossaries
+++ b/documentation/tools/check-glossaries
@@ -14,7 +14,7 @@ def parse_arguments() -> argparse.Namespace:
 
     parser.add_argument("-d", "--docs-dir",
                         type=Path,
-                        default=Path(os.path.dirname(os.path.realpath(__file__))) / "documentation",
+                        default=Path(os.path.dirname(os.path.realpath(__file__))) / "../",
                         help="Path to documentation/ directory in yocto-docs")
 
     return parser.parse_args()

-- 
2.54.0