Skip to content

Commit

Permalink
Fix global-build official build arg evaluation (#37665)
Browse files Browse the repository at this point in the history
  • Loading branch information
safern authored Jun 9, 2020
1 parent ee17aa6 commit 19bb2a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eng/pipelines/common/global-build-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:
value: /p:CrossBuild=${{ ne(parameters.crossrootfsDir, '') }}

- name: _officialBuildParameter
$ {{ if eq(parameters.isOfficialBuild, true) }}:
${{ if eq(parameters.isOfficialBuild, true) }}:
value: /p:OfficialBuildId=$(Build.BuildNumber)
$ {{ if ne(parameters.isOfficialBuild, true) }}:
${{ if ne(parameters.isOfficialBuild, true) }}:
value: ''

- ${{ parameters.variables }}
Expand Down

0 comments on commit 19bb2a5

Please sign in to comment.