Skip to content

Commit d0f58a9

Browse files
authored
Fix new typo
1 parent 5009027 commit d0f58a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure-pipelines/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ steps:
5151
echo "Temp Path: $tempPath"
5252
Get-ChildItem -Path $tempPath -Filter *.cpuprofile | Copy-Item -Destination "$(Build.SourcesDirectory)/out/logs"
5353
displayName: 'Copy .cpuprofile files to out/logs'
54-
condition: eq(${{ parameters.isIntegration }}, true)
54+
condition: eq({{ parameters.isIntegration }}, true)
5555

5656
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
5757
- task: 1ES.PublishPipelineArtifact@1
58-
condition: eq(${{ parameters.isIntegration }}, true)
58+
condition: eq({{ parameters.isIntegration }}, true)
5959
displayName: 'Upload integration test logs'
6060
inputs:
6161
path: '$(Build.SourcesDirectory)/out/logs'
6262
artifact: 'Test Logs ($(System.StageDisplayName)-$(Agent.JobName)-$(System.JobAttempt))'
6363
- ${{ else }}:
6464
- task: PublishPipelineArtifact@1
65-
condition: eq(${{ parameters.isIntegration }}, true)
65+
condition: eq({{ parameters.isIntegration }}, true)
6666
displayName: 'Upload integration test logs'
6767
inputs:
6868
targetPath: '$(Build.SourcesDirectory)/out/logs'

0 commit comments

Comments
 (0)