https://github.com/python/cpython/commit/efd8fe4e6e6c0bfe41662a5e53d024dda7ac6e54 commit: efd8fe4e6e6c0bfe41662a5e53d024dda7ac6e54 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: sobolevn <[email protected]> date: 2024-11-12T11:01:39Z summary:
[3.13] Fix error message of "Check if Autoconf files are up to date" job (GH-126683) (#126717) Fix error message of "Check if Autoconf files are up to date" job (GH-126683) (cherry picked from commit 0052a8c638518447baf39ae02b6ff6a309efd4ce) Co-authored-by: sobolevn <[email protected]> files: M .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 763c5ade7eb904..19c59c53c99e14 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -119,7 +119,7 @@ jobs: # Check for changes in regenerated files if test -n "$changes"; then echo "Generated files not up to date." - echo "Perhaps you forgot to run make regen-all or build.bat --regen. ;)" + echo "Perhaps you forgot to run make regen-configure ;)" echo "configure files must be regenerated with a specific version of autoconf." echo "$changes" echo "" _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
