Skip to content

Commit

Permalink
fix: wrong path update_readme.py
Browse files Browse the repository at this point in the history
  • Loading branch information
daffainfo committed Jan 15, 2024
1 parent 9d7c53c commit 137d008
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/scripts/update_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
total_second_level_subfolder_count += len(second_level_subfolders)

# Update the README.md file
readme_file = os.path.join(folder_path, "README.md")
readme_file = os.path.join(".", "README.md")
print(readme_file)
if os.path.isfile(readme_file):
with open(readme_file, 'r') as file:
content = file.read()
Expand Down

0 comments on commit 137d008

Please sign in to comment.