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()