Skip to content

Commit

Permalink
scripts/detect-broken-more-info-links.py: rename to check-more-info-l…
Browse files Browse the repository at this point in the history
…inks.py
  • Loading branch information
vitorhcl committed Mar 15, 2024
1 parent a4eaea4 commit 6474534
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/README.md
Expand Up @@ -11,7 +11,7 @@ This section contains a summary of the scripts available in this directory. For
- [build-index.sh](build-index.sh) script builds the index of available pages.
- [check-pr.sh](check-pr.sh) script checks the pages syntax and performs various checks on the PR.
- [deploy.sh](deploy.sh) script deploys the ZIP and PDF archives to the static website repository.
- [detect-broken-more-info-links.py](detect-broken-more-info-links.py) is a Python script to detect "More information" links that are broken or redirect to another one, using asynchronous code for speed.
- [check-more-info-links.py](check-more-info-links.py) is a Python script to detect "More information" links that are broken or redirect to another one, using asynchronous code for speed.
- [send-to-bot.py](send-to-bot.py) is a Python script that send the build or tests output to tldr-bot.
- [set-alias-page.py](set-alias-page.py) is a Python script to generate or update alias pages.
- [set-more-info-link.py](set-more-info-link.py) is a Python script to generate or update more information links across pages.
Expand All @@ -28,7 +28,7 @@ The below table shows the compatibility of user-executable scripts with differen
| [render.py](pdf/render.py) | βœ… | βœ… | βœ… |
| [build-pdf.sh](pdf/build-pdf.sh) | βœ… | βœ… | ❌ |
| [build.sh](build.sh) | βœ… | βœ… | ❌ |
| [detect-broken-more-info-links.py](detect-broken-more-info-links.py) | βœ… | ? | βœ… |
| [check-more-info-links.py](check-more-info-links.py) | βœ… | ? | βœ… |
| [set-alias-pages.py](set-alias-pages.py) | βœ… | βœ… | βœ… |
| [set-more-info-link.py](set-more-info-link.py) | βœ… | βœ… | βœ… |
| [wrong-filename.sh](wrong-filename.sh) | βœ… | ❌ | ❌ |
Expand Down
Expand Up @@ -15,6 +15,7 @@

sem = asyncio.Semaphore(MAX_CONCURRENCY)


async def find_md_files(search_path: AsyncPath) -> list[AsyncPath]:
"""Find all .md files in the specified search path."""
md_files = set()
Expand Down Expand Up @@ -125,4 +126,3 @@ async def main():

if __name__ == "__main__":
asyncio.run(main())

0 comments on commit 6474534

Please sign in to comment.