Skip to content

Commit cf6f470

Browse files
authored
Fixed an error in the script (#2566)
1 parent 283b0c5 commit cf6f470

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eng/pipelines/templates/steps/publish-to-dev-feed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ steps:
5454
}
5555
5656
Write-Host "> $command"
57-
Invoke-Expression $command 2&>1 | Tee-Object -Variable publishOutput
57+
Invoke-Expression $command 2>&1 | Tee-Object -Variable publishOutput
5858
if ($LASTEXITCODE -ne 0) {
5959
if ($ignoreDuplicates -and $publishOutput -match 'The feed .* already contains file') {
6060
Write-Host "Package $($file.FullName) has already been published with the same version. Skipping."

0 commit comments

Comments
 (0)