We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95b98fe commit b8a8924Copy full SHA for b8a8924
1 file changed
release.py
@@ -577,7 +577,12 @@ def bump(tag: Tag) -> None:
577
578
print("Bumped revision")
579
if extra_work:
580
- print("configure.ac has changed; re-run autotools!")
+ if ask_question(
581
+ "configure.ac has changed; run 'Tools/build/regen-configure.sh'?"
582
+ ):
583
+ run_cmd(["Tools/build/regen-configure.sh"])
584
+ else:
585
+ print("configure.ac has changed; re-run autotools!")
586
print("Please commit and use --tag")
587
588
0 commit comments