From 7daa71d8f5a3ab6f9e14f34b7a31d0bbd735c79f Mon Sep 17 00:00:00 2001 From: Roman Bredehoft Date: Wed, 14 Feb 2024 16:06:04 +0100 Subject: [PATCH] chore: fix link to license file in the readme --- README.md | 2 +- script/make_utils/local_link_check.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0b6f4d0c8..59b5cdbb1 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@

- +

diff --git a/script/make_utils/local_link_check.py b/script/make_utils/local_link_check.py index 5561c9dd3..e5e70479b 100644 --- a/script/make_utils/local_link_check.py +++ b/script/make_utils/local_link_check.py @@ -66,7 +66,9 @@ def check_content_for_dead_links(content: str, file_path: Path) -> List[str]: continue if not link_path.exists(): - errors.append(f"{file_path} contains a link to {link_path} " "that can't be found") + errors.append( + f"{file_path} contains a link to file '{link_path.resolve()}' that can't be found" + ) return errors