Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,12 @@ def bump(tag: Tag) -> None:

print("Bumped revision")
if extra_work:
print("configure.ac has changed; re-run autotools!")
if ask_question(
"configure.ac has changed; run 'Tools/build/regen-configure.sh'?"
):
run_cmd(["Tools/build/regen-configure.sh"])
else:
print("configure.ac has changed; re-run autotools!")
print("Please commit and use --tag")


Expand Down
Loading