Skip to content

Commit

Permalink
fix(generate-readme.py): links now actually lead somewhere
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewzn69 committed Oct 19, 2023
1 parent 8fb507c commit 43c06cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/generate-readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def generate_readme(directory):
# Create the links
file_name, file_extension = os.path.splitext(file)
print(file_name)
readme_content += f"[{file_name}]({github_repo_url}{file})\n"
readme_content += f"[{file_name}]({github_repo_url})\n"
readme_content += f"![{file_name}]({directory}/{file})\n---\n"

return readme_content
Expand Down

0 comments on commit 43c06cb

Please sign in to comment.