diff --git a/.github/scripts/update_readme.py b/.github/scripts/update_readme.py index 0f68bad..bae69e0 100644 --- a/.github/scripts/update_readme.py +++ b/.github/scripts/update_readme.py @@ -14,7 +14,8 @@ if os.path.exists(folder_path) and os.path.isdir(folder_path): 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()