Skip to content

Commit 2769140

Browse files
committed
Fix check_error_codes CI job
The diff command was missing a --quiet argument, causing the job not to fail when unminified messages were found. This commit will cause CI to fail because there's an unminified error in main. The unminified error will be fixed by #24688.
1 parent 7e8a020 commit 2769140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ jobs:
329329
name: Search build artifacts for unminified errors
330330
command: |
331331
yarn extract-errors
332-
git diff || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
332+
git diff --quiet || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
333333
334334
yarn_test:
335335
docker: *docker

0 commit comments

Comments
 (0)