From e5ee1c8db6eba18bcfd9f6febefc4d6c5e09f6b9 Mon Sep 17 00:00:00 2001 From: Jeremy Fleischman Date: Fri, 25 Jul 2025 08:05:40 -0700 Subject: [PATCH] chore: add missing 'make pigeon' instruction (#20202) * chore: fix typo 'make_build' -> 'make build' * chore: add missing 'make pigeon' instruction Turns out I was getting bit by forgetting to run `make pigeon`, which also generates files. Perhaps it would be better to make it part of `make build`? --------- Co-authored-by: Alex --- .github/workflows/static_analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml index 083e814bc0..573c908526 100644 --- a/.github/workflows/static_analysis.yml +++ b/.github/workflows/static_analysis.yml @@ -90,7 +90,7 @@ jobs: env: CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }} run: | - echo "ERROR: Generated files not up to date! Run make_build inside the mobile directory" + echo "ERROR: Generated files not up to date! Run 'make build' and 'make pigeon' inside the mobile directory" echo "Changed files: ${CHANGED_FILES}" exit 1