From 69b93b0d16b9fe64bfa05568ae2ac3df26271b6b Mon Sep 17 00:00:00 2001 From: David Fluck Date: Sun, 27 Oct 2024 13:19:22 -0400 Subject: [PATCH] build: INFENG-940: Fix logic error in CircleCI config make-component job (#10143) Fix logic error in CircleCI config make-component job that would cause it to run dryrun and production jobs as the inverse of the dryrun boolean variable. I.e. the opposite behavior. --- .circleci/real_config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/real_config.yml b/.circleci/real_config.yml index ee3f2b1bce4..56961ac63c2 100644 --- a/.circleci/real_config.yml +++ b/.circleci/real_config.yml @@ -1507,9 +1507,9 @@ commands: no_output_timeout: <> command: | if <>; then - make -C <> <> - else make -C <> <>-dryrun + else + make -C <> <> fi jobs: