feat: add git diff output to history update script

This commit is contained in:
Paul Gauthier (aider) 2024-11-29 09:23:01 -08:00
parent ed2479ea82
commit 93cd3d0d8b

View file

@ -67,6 +67,9 @@ Also, add this as the last bullet under the "### main branch" section:
# Cleanup # Cleanup
os.unlink(tmp_path) os.unlink(tmp_path)
# Show git diff of HISTORY.md
subprocess.run(["git", "diff", "HISTORY.md"])
if __name__ == "__main__": if __name__ == "__main__":
main() main()