Skip to content

Commit

Permalink
build: INFENG-940: Fix logic error in CircleCI config make-component …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
davidfluck-hpe authored Oct 27, 2024
1 parent 00870f5 commit 69b93b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/real_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1507,9 +1507,9 @@ commands:
no_output_timeout: <<parameters.no_output_timeout>>
command: |
if <<parameters.dryrun>>; then
make -C <<parameters.component>> <<parameters.target>>
else
make -C <<parameters.component>> <<parameters.target>>-dryrun
else
make -C <<parameters.component>> <<parameters.target>>
fi
jobs:
Expand Down

0 comments on commit 69b93b0

Please sign in to comment.