[Python-checkins] Add windows build.bat counterpart for 'make regen-all' in error message (GH-26770)

terryjreedy webhook-mailer at python.org
Mon Jul 26 23:09:51 EDT 2021


https://github.com/python/cpython/commit/d61b69f02d441ae517109a4428f2a18416c9ff0f
commit: d61b69f02d441ae517109a4428f2a18416c9ff0f
branch: main
author: Ken Jin <28750310+Fidget-Spinner at users.noreply.github.com>
committer: terryjreedy <tjreedy at udel.edu>
date: 2021-07-26T23:09:30-04:00
summary:

Add windows build.bat counterpart for 'make regen-all' in error message (GH-26770)

files:
M .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1140c86dfa665d..3d79999b229ba7 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -75,7 +75,7 @@ jobs:
           # Check for changes in regenerated files
           if ! test -z "$changes"
           then
-            echo "Generated files not up to date. Perhaps you forgot to run make regen-all ;)"
+            echo "Generated files not up to date. Perhaps you forgot to run make regen-all or build.bat --regen ;)"
             echo "$changes"
             exit 1
           fi



More information about the Python-checkins mailing list