This is an automated email from the ASF dual-hosted git repository. meonkeys pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/fineract-site.git
commit 0ecbc1d113758edf1bb9abb06b792877833db602 Author: Adam Monsen <[email protected]> AuthorDate: Sat Aug 29 20:14:41 2026 -0700 improved log messages for /docs/ updater --- scripts/generate_docs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/generate_docs.py b/scripts/generate_docs.py index 9bff431..817744f 100644 --- a/scripts/generate_docs.py +++ b/scripts/generate_docs.py @@ -150,13 +150,13 @@ def main(): shutil.copy2(source_html, dest_html) localize_stylesheets(dest_html) - print(f"Wrote {dest_html}") + print(f"Localized stylesheets and updated {dest_html}") add_to_git(dest_dir, dest_html) print(f"Added {dest_html} to Git index") write_commit_message(args.version, commit_hash) - print(f"Wrote {COMMIT_MESSAGE_PATH}") - print(f"Run: git commit -F {COMMIT_MESSAGE_PATH.name}") + print(f"Created {COMMIT_MESSAGE_PATH}") + print(f"Now YOU can run 👉 git commit -F {COMMIT_MESSAGE_PATH.name}") if __name__ == "__main__":
