Skip to content

Commit 42b330c

Browse files
authored
Fix check_error_codes CI job (#24692)
The diff command was missing a --quiet argument, causing the job not to fail when unminified messages were found.
1 parent 060505e commit 42b330c

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)