Skip to content

Commit

Permalink
chore: fix link to license file in the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed Feb 14, 2024
1 parent 53b7a56 commit 7daa71d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<p align="center">
<a href="https://github.com/zama-ai/concrete-ml/releases"><img src="https://img.shields.io/github/v/release/zama-ai/concrete-ml?style=flat-square"></a>
<a href="license"><img src="https://img.shields.io/badge/License-BSD--3--Clause--Clear-%23ffb243?style=flat-square"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/License-BSD--3--Clause--Clear-%23ffb243?style=flat-square"></a>
<a href="https://github.com/zama-ai/bounty-program"><img src="https://img.shields.io/badge/Contribute-Zama%20Bounty%20Program-%23ffd208?style=flat-square"></a>
</p>

Expand Down
4 changes: 3 additions & 1 deletion script/make_utils/local_link_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 7daa71d

Please sign in to comment.