From 93cd3d0d8baadf8251fea53146d429aaa60d5f77 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 29 Nov 2024 09:23:01 -0800 Subject: [PATCH] feat: add git diff output to history update script --- scripts/update-history.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/update-history.py b/scripts/update-history.py index 3bc43f54c..a43620eb0 100755 --- a/scripts/update-history.py +++ b/scripts/update-history.py @@ -67,6 +67,9 @@ Also, add this as the last bullet under the "### main branch" section: # Cleanup os.unlink(tmp_path) + # Show git diff of HISTORY.md + subprocess.run(["git", "diff", "HISTORY.md"]) + if __name__ == "__main__": main()